ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
iPhone

Beta
 http://club.blogbeta.com
      twitter: @betasalon

         Robin Lu
        in-src.com
iPhone

              @ IN-SRC Studio
         iamawalrus@gmail.com
         http://www.robinlu.com
? Object-C
?
?
?
Object-C
? a simple computer language designed to
  enable sophisticated object-oriented
  programming
? Message
? Category
? Protocol
? Target-Action
? Delegation
? Noti?cation
? Key Value Coding (KVC)
? Singleton
?
    ? retain (alloc, copy)
    ? release
    ? autorelease
?
?
? Apple            ,

?         iPhone

  ? http://itunes.stanford.edu/
:

           COCOA PROGRAMMING FOR MAC OS X



The iPhone Developer¡¯s Cookbook



           Beginning iPhone Development
:


? http://iphone.wordpress.org/
? ftp://ftp.idsoftware.com/idstuff/wolf3d/
  wolf3d_iphone_v1.0_src.zip
:
? facebook: http://github.com/joehewitt/three20/tree/
 master
? JSON: http://code.google.com/p/json-framework/
? RE: http://regexkit.sourceforge.net/#RegexKitLite
? http server: http://code.google.com/p/cocoahttpserver/
? 2D Engine: http://code.google.com/p/cocos2d-iphone/
? 3D Engine:http://oolongengine.com/
:RSS

? Planet iPhone SDK: http://www.planetiphonesdk.com/
 planet_iphone_sdk_feed.xml
? Cocoa With Love: http://cocoawithlove.com/feeds/
 posts/default
? Cocoa Is My Girlfriend: http://feeds.feedburner.com/
 CocoaIsMyGirlfriend

More Related Content

Iphone Dev

Editor's Notes

  • #5: msg:内部转译为对objc_msgSend的调用,大部分时候可以将其理解为和虚函数等同,动态绑定方式和虚函数有区别,vtable vs dispatch table,更多动态特性 category: 实现(Implementation)的分类,为已经存在的类添加新方法,官方类丰富多彩的民间扩展 protocol: 抽象接口定义,调用的契约,Formal / Informal Protocol.对比java interfaces