V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
iOS 开发实用技术导航
NSHipster 中文版
http://nshipster.cn/
cocos2d 开源 2D 游戏引擎
http://www.cocos2d-iphone.org/
CocoaPods
http://cocoapods.org/
Google Analytics for Mobile 统计解决方案
http://code.google.com/mobile/analytics/
WWDC
https://developer.apple.com/wwdc/
Design Guides and Resources
https://developer.apple.com/design/
Transcripts of WWDC sessions
http://asciiwwdc.com
Cocoa with Love
http://cocoawithlove.com/
Cocoa Dev Central
http://cocoadevcentral.com/
NSHipster
http://nshipster.com/
Style Guides
Google Objective-C Style Guide
NYTimes Objective-C Style Guide
Useful Tools and Services
Charles Web Debugging Proxy
Smore
iYu
V2EX  ›  iDev

分享自己写的IOS入门笔记

  •  
  •   iYu ·
    iiiyu · 2012-03-08 11:19:14 +08:00 · 9134 次点击
    这是一个创建于 4430 天前的主题,其中的信息可能已经有所发展或是发生改变。
    46 条回复    2016-04-25 11:43:31 +08:00
    _why
        1
    _why  
       2012-03-08 11:25:17 +08:00
    MVC讲的挺有意思的,待会儿我仔细看看
    myrual
        2
    myrual  
       2012-03-08 11:36:03 +08:00
    写的不错。
    kran
        3
    kran  
       2012-03-08 11:42:54 +08:00
    到底看的是哪个视频?
    iYu
        4
    iYu  
    OP
       2012-03-08 11:44:41 +08:00
    @kran 2011斯坦福的啊。
    RoCry
        5
    RoCry  
       2012-03-08 11:49:18 +08:00
    写得相当不错...
    收藏了~
    iYu
        6
    iYu  
    OP
       2012-03-08 11:54:46 +08:00
    @_why @myrual @RoCry 哈哈 谢谢 捧场啊。
    bit
        7
    bit  
       2012-03-08 12:20:09 +08:00
    谢谢分享,收藏了
    kimcool
        8
    kimcool  
       2012-03-08 12:26:14 +08:00
    哈哈,喜欢看这样的笔记。
    iYu
        9
    iYu  
    OP
       2012-03-21 15:51:54 +08:00
    sobigfish
        10
    sobigfish  
       2012-03-21 16:18:10 +08:00
    lz
    有uitableview的笔记/心得不,感谢
    iYu
        11
    iYu  
    OP
       2012-03-21 16:21:13 +08:00
    @sobigfish 本来4就想写来着。。但是觉得火候不到。。再过几天 研究哈。。
    nearthegreen
        12
    nearthegreen  
       2012-03-21 16:53:58 +08:00
    LZ 求QQ 求微博地址 您在google干过?
    iYu
        13
    iYu  
    OP
       2012-03-21 17:03:12 +08:00
    @nearthegreen ..囧 已经修改歧义的地方。。。。。
    Shane
        14
    Shane  
       2012-03-21 17:05:15 +08:00
    订阅了lz的blog。。谢谢分享
    nearthegreen
        15
    nearthegreen  
       2012-03-22 21:43:49 +08:00
    @iYu 还是非常的敬佩LZ 正在学习IOS开发 也正在看老头的教程 and 老头很牛X哇 还和乔帮主很熟
    nearthegreen
        16
    nearthegreen  
       2012-03-23 11:34:53 +08:00
    @iYu 问你一个问题呗 octopress使用push提交到heroku以后的文章 是不是就没法编辑和删除了。我对git和linux不是很了解,希望能回复一下 谢谢。
    iYu
        17
    iYu  
    OP
       2012-03-23 12:33:29 +08:00
    @nearthegreen 可以删除啊。。。原理是这样的 octopress其实已经是一个完整的blog。你push到heroku上只是找了一个服务器去托管。你push的是这个blog。

    so 你new post出来的哪个算文章的“源码” 然后你写了 保存了 运行以后
    git add .
    git commit -am "new blog"
    git push heroku master

    它就上去了。
    然后你想删掉文章吧post删掉就号
    git rm xxx.markdown
    然后在commit 在提交就好了。。。

    有些凌乱。。。 关键他都是git的操作。。实在不明白 就先看一下git。。
    nearthegreen
        18
    nearthegreen  
       2012-03-23 13:34:35 +08:00
    @iYu 恩 谢谢啦 弄明白了 我E文不好 git还有github的一直没搞懂 学校老师讲SVN 那节课还没去。。。
    ygmpkk
        19
    ygmpkk  
       2012-03-23 13:48:41 +08:00
    有点意思
    nearthegreen
        20
    nearthegreen  
       2012-03-28 09:39:38 +08:00
    @iYu 不好意思 再问一个比较弱智的问题,我弄了很长时间没搞出来,再次请教,我最近更新了主题,然后我想提交到heroku上去,我就这样敲的命令:
    git add .
    git commit -am '更改'
    git push heroku master
    然后给我了下面一串的错误
    ! [rejected] master -> master (non-fast-forward)
    error: failed to push some refs to '[email protected]:shiguangji.git'
    To prevent you from losing history, non-fast-forward updates were rejected
    Merge the remote changes (e.g. 'git pull') before pushing again. See the
    'Note about fast-forwards' section of 'git push --help' for details.
    我找了些git的文章看了看,不知道如何整哇,网上说这样强制push
    git push heroku +master
    测试了下 还是报错,无奈了。
    我也尝试使用git pull 但是提示我删除一大串的东西,诶 实在搞不定,求解。
    求大牛支招。
    iYu
        21
    iYu  
    OP
       2012-03-28 11:07:21 +08:00
    @nearthegreen 你的这个情况。我猜测是你换过环境。然后你修改时候的源码不是最新的。以后用git的话 先建立分支 然后修改。。然后 主分支更新 再把弄好的分支merge过来。。。你这个问题我也遇到过。。。我没有很好的办法。我的解决办法是 备份现在你的源码 然后重新clone一个最新的远程代码过来。然后在把改过的代码修改到新clone的里面。然后再提交。
    nearthegreen
        22
    nearthegreen  
       2012-03-29 09:12:35 +08:00
    @iYu 我对git的机制还是不很熟悉,搞不懂,我直接上heroku把APP给删除了,然后再重新提交了下。感谢您的回复和一直的帮助,非常感谢。
    jkeylu
        23
    jkeylu  
       2012-03-29 09:16:08 +08:00
    收藏之
    ghyghoo8
        24
    ghyghoo8  
       2012-03-29 09:32:05 +08:00
    经典啊~
    doomgiant
        25
    doomgiant  
       2012-03-29 11:18:15 +08:00
    收藏,有机会学习学习
    musray
        26
    musray  
       2012-03-29 12:41:04 +08:00
    收藏了回家慢慢看。作为一个从C语言开始自学,妄想有一天能在App Store里看见自己作品的奔三门外汉,很需要这样的文章,感谢楼主!
    jyoe
        27
    jyoe  
       2012-03-31 15:21:38 +08:00
    目前看的是2010Alan讲的那几节课 2011老头的课已Download完毕 假期恶补
    iYu
        28
    iYu  
    OP
       2012-03-31 16:06:19 +08:00
    @jyoe 直接看2011吧iOS5更新了很多。。跟以前的不一样。
    iYu
        29
    iYu  
    OP
       2012-03-31 16:07:20 +08:00
    @musray 其实感觉自己学oc就好了。我也想有自己的上架。。同加油。
    jyoe
        30
    jyoe  
       2012-04-01 11:45:49 +08:00
    @iYu 嗯~昨天iPad上下了第一节课讲MVC的~我英语一般般~ 不过感觉还是要先学点OC的语法 看了你的笔记受益匪浅 已转成PDF档 中午吃饭继续看。
    iYu
        31
    iYu  
    OP
       2012-04-05 00:38:02 +08:00   ❤️ 1
    jyoe
        32
    jyoe  
       2012-04-05 10:54:58 +08:00
    @iYu 来得早不如来的巧 looking
    jyoe
        33
    jyoe  
       2012-04-11 20:31:00 +08:00
    @iYu 帅哥有个问题,老头的英文字幕从哪搞,我听力一般般。最近比较苦恼。
    Ken_Adams
        34
    Ken_Adams  
       2012-04-11 22:09:44 +08:00
    @jyoe 从 iTunes U 下载的视频里自带隐藏字幕,iTunes >> Preferences >> Playback >> 勾选 Show closed captioning when available 即可显示字幕
    iYu
        35
    iYu  
    OP
       2012-04-12 00:53:40 +08:00
    @jyoe
    @Ken_Adams
    哈哈 其实播放控制面板上不是有个小气泡么。
    cuijiudai
        36
    cuijiudai  
       2012-04-12 01:03:11 +08:00
    很赞啊!!
    jyoe
        37
    jyoe  
       2012-04-12 08:53:43 +08:00
    @Ken_Adams 大大的好银╮(╯3╰)╭
    @iYu 昨天搞到1点多,一边看一遍码字
    jyoe
        38
    jyoe  
       2012-04-13 10:15:48 +08:00
    @iYu 你指的播放面板是虾米啊/是itunes吗? 木有找到~又被完虐2个小时。。。
    iYu
        39
    iYu  
    OP
       2012-04-13 10:20:57 +08:00
    @jyoe 就是itunes啊。。。囧 这个东西不难找把。
    liuyao729
        40
    liuyao729  
       2012-04-13 11:27:15 +08:00
    斯坦福老头 呵呵
    jyoe
        41
    jyoe  
       2012-04-14 18:25:16 +08:00
    @iYu iPad上的itunes木有这个小气泡 o(-"-)o
    noevil
        42
    noevil  
       2012-04-14 19:07:49 +08:00
    写的挺好!
    iYu
        43
    iYu  
    OP
       2012-04-16 17:39:43 +08:00
    @jyoe 你用ipad看的么? ipad是去设置里面调的。
    jyoe
        44
    jyoe  
       2012-04-16 21:17:57 +08:00
    @iYu 嗯~这样方便 一遍听老头讲课 一遍直接堆码。 不过我现在把之前的IBM笔电拿出来了~一样 看不懂暂停查单词也容易~呵呵
    heyPIAO
        45
    heyPIAO  
       2016-04-23 11:32:02 +08:00
    您好。看到您之前有评论说了解 bong2 开放平台的一些内容,请问如何才能获得 bong2 手环的数据啊?急需!求告知~网上只有一个 bong+什么的,找来找去找不到 API 的信息。
    iYu
        46
    iYu  
    OP
       2016-04-25 11:43:31 +08:00 via iPhone
    @heyPIAO bong 啊。不关心了。
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   3327 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 109ms · UTC 11:28 · PVG 19:28 · LAX 04:28 · JFK 07:28
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.