V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
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 · Mar 8, 2012 · 10230 views
    This topic created in 5167 days ago, the information mentioned may be changed or developed.
    46 replies    2016-04-25 11:43:31 +08:00
    _why
        1
    _why  
       Mar 8, 2012
    MVC讲的挺有意思的,待会儿我仔细看看
    myrual
        2
    myrual  
       Mar 8, 2012
    写的不错。
    kran
        3
    kran  
       Mar 8, 2012
    到底看的是哪个视频?
    iYu
        4
    iYu  
    OP
       Mar 8, 2012
    @kran 2011斯坦福的啊。
    RoCry
        5
    RoCry  
       Mar 8, 2012
    写得相当不错...
    收藏了~
    iYu
        6
    iYu  
    OP
       Mar 8, 2012
    @_why @myrual @RoCry 哈哈 谢谢 捧场啊。
    bit
        7
    bit  
       Mar 8, 2012
    谢谢分享,收藏了
    kimcool
        8
    kimcool  
       Mar 8, 2012
    哈哈,喜欢看这样的笔记。
    iYu
        9
    iYu  
    OP
       Mar 21, 2012
    run2
        10
    run2  
       Mar 21, 2012
    lz
    有uitableview的笔记/心得不,感谢
    iYu
        11
    iYu  
    OP
       Mar 21, 2012
    @sobigfish 本来4就想写来着。。但是觉得火候不到。。再过几天 研究哈。。
    nearthegreen
        12
    nearthegreen  
       Mar 21, 2012
    LZ 求QQ 求微博地址 您在google干过?
    iYu
        13
    iYu  
    OP
       Mar 21, 2012
    @nearthegreen ..囧 已经修改歧义的地方。。。。。
    Shane
        14
    Shane  
       Mar 21, 2012
    订阅了lz的blog。。谢谢分享
    nearthegreen
        15
    nearthegreen  
       Mar 22, 2012
    @iYu 还是非常的敬佩LZ 正在学习IOS开发 也正在看老头的教程 and 老头很牛X哇 还和乔帮主很熟
    nearthegreen
        16
    nearthegreen  
       Mar 23, 2012
    @iYu 问你一个问题呗 octopress使用push提交到heroku以后的文章 是不是就没法编辑和删除了。我对git和linux不是很了解,希望能回复一下 谢谢。
    iYu
        17
    iYu  
    OP
       Mar 23, 2012
    @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  
       Mar 23, 2012
    @iYu 恩 谢谢啦 弄明白了 我E文不好 git还有github的一直没搞懂 学校老师讲SVN 那节课还没去。。。
    ygmpkk
        19
    ygmpkk  
       Mar 23, 2012
    有点意思
    nearthegreen
        20
    nearthegreen  
       Mar 28, 2012
    @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
       Mar 28, 2012
    @nearthegreen 你的这个情况。我猜测是你换过环境。然后你修改时候的源码不是最新的。以后用git的话 先建立分支 然后修改。。然后 主分支更新 再把弄好的分支merge过来。。。你这个问题我也遇到过。。。我没有很好的办法。我的解决办法是 备份现在你的源码 然后重新clone一个最新的远程代码过来。然后在把改过的代码修改到新clone的里面。然后再提交。
    nearthegreen
        22
    nearthegreen  
       Mar 29, 2012
    @iYu 我对git的机制还是不很熟悉,搞不懂,我直接上heroku把APP给删除了,然后再重新提交了下。感谢您的回复和一直的帮助,非常感谢。
    jkeylu
        23
    jkeylu  
       Mar 29, 2012
    收藏之
    ghyghoo8
        24
    ghyghoo8  
       Mar 29, 2012
    经典啊~
    doomgiant
        25
    doomgiant  
       Mar 29, 2012
    收藏,有机会学习学习
    musray
        26
    musray  
       Mar 29, 2012
    收藏了回家慢慢看。作为一个从C语言开始自学,妄想有一天能在App Store里看见自己作品的奔三门外汉,很需要这样的文章,感谢楼主!
    jyoe
        27
    jyoe  
       Mar 31, 2012
    目前看的是2010Alan讲的那几节课 2011老头的课已Download完毕 假期恶补
    iYu
        28
    iYu  
    OP
       Mar 31, 2012
    @jyoe 直接看2011吧iOS5更新了很多。。跟以前的不一样。
    iYu
        29
    iYu  
    OP
       Mar 31, 2012
    @musray 其实感觉自己学oc就好了。我也想有自己的上架。。同加油。
    jyoe
        30
    jyoe  
       Apr 1, 2012
    @iYu 嗯~昨天iPad上下了第一节课讲MVC的~我英语一般般~ 不过感觉还是要先学点OC的语法 看了你的笔记受益匪浅 已转成PDF档 中午吃饭继续看。
    iYu
        31
    iYu  
    OP
       Apr 5, 2012   ❤️ 1
    jyoe
        32
    jyoe  
       Apr 5, 2012
    @iYu 来得早不如来的巧 looking
    jyoe
        33
    jyoe  
       Apr 11, 2012
    @iYu 帅哥有个问题,老头的英文字幕从哪搞,我听力一般般。最近比较苦恼。
    Ken_Adams
        34
    Ken_Adams  
       Apr 11, 2012
    @jyoe 从 iTunes U 下载的视频里自带隐藏字幕,iTunes >> Preferences >> Playback >> 勾选 Show closed captioning when available 即可显示字幕
    iYu
        35
    iYu  
    OP
       Apr 12, 2012
    @jyoe
    @Ken_Adams
    哈哈 其实播放控制面板上不是有个小气泡么。
    cuijiudai
        36
    cuijiudai  
       Apr 12, 2012
    很赞啊!!
    jyoe
        37
    jyoe  
       Apr 12, 2012
    @Ken_Adams 大大的好银╮(╯3╰)╭
    @iYu 昨天搞到1点多,一边看一遍码字
    jyoe
        38
    jyoe  
       Apr 13, 2012
    @iYu 你指的播放面板是虾米啊/是itunes吗? 木有找到~又被完虐2个小时。。。
    iYu
        39
    iYu  
    OP
       Apr 13, 2012
    @jyoe 就是itunes啊。。。囧 这个东西不难找把。
    liuyao729
        40
    liuyao729  
       Apr 13, 2012
    斯坦福老头 呵呵
    jyoe
        41
    jyoe  
       Apr 14, 2012
    @iYu iPad上的itunes木有这个小气泡 o(-"-)o
    noevil
        42
    noevil  
       Apr 14, 2012
    写的挺好!
    iYu
        43
    iYu  
    OP
       Apr 16, 2012
    @jyoe 你用ipad看的么? ipad是去设置里面调的。
    jyoe
        44
    jyoe  
       Apr 16, 2012
    @iYu 嗯~这样方便 一遍听老头讲课 一遍直接堆码。 不过我现在把之前的IBM笔电拿出来了~一样 看不懂暂停查单词也容易~呵呵
    heyPIAO
        45
    heyPIAO  
       Apr 23, 2016
    您好。看到您之前有评论说了解 bong2 开放平台的一些内容,请问如何才能获得 bong2 手环的数据啊?急需!求告知~网上只有一个 bong+什么的,找来找去找不到 API 的信息。
    iYu
        46
    iYu  
    OP
       Apr 25, 2016 via iPhone
    @heyPIAO bong 啊。不关心了。
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   2703 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 94ms · UTC 14:30 · PVG 22:30 · LAX 07:30 · JFK 10:30
    ♥ Do have faith in what you're doing.