《iOS 5基础教程》的原文摘录

  • 由于Xcode没有为标签栏应用程序提供模板,因此我们将从头构建自己的模板 (查看原文)
    herock 2011-03-06 18:43:52
    —— 引自第108页
  • 分组表不应该提供索引 (查看原文)
    TT 2012-08-30 16:15:53
    —— 引自第158页
  • Most modern application development environments have some tool that lets you build your user interface graphically. One distinction between Interface Builder and many of these other tools is that Interface Builder does not generate any code that must be maintained. Instead, Interface Builder creates Objective-C objects, just as you would do in your own code, and then serializes those objects into the nib file so that they can be loaded directly into memory at runtime. This avoids many of the problems associated with code generation and is, overall, a more powerful approach. (查看原文)
    2013-10-15 11:41:04
    —— 引自第37页