Objective-C Runtime Programming Guide

时间:2015-03-13 05:01:50
【文件属性】:
文件名称:Objective-C Runtime Programming Guide
文件大小:291KB
文件格式:PDF
更新时间:2015-03-13 05:01:50
Objective-C IOS Iphone The Objective-C language defers as many decisions as it can from compile time and link time to runtime. Whenever possible, it does things dynamically. This means that the language requires not just a compiler, but also a runtime system to execute the compiled code. The runtime system acts as a kind of operating system for the Objective-C language; it’s what makes the language work. This document looks at the NSObject class and how Objective-C programs interact with the runtime system. In particular, it examines the paradigms for dynamically loading new classes at runtime, and forwarding messages to other objects. It also provides information about how you can find information about objects while your program is running. You should read this document to gain an understanding of how the Objective-C runtime system works and how you can take advantage of it. Typically, though, there should be little reason for you to need to know and understand this material to write a Cocoa application.

网友评论

  • 挺清晰的,满意。
  • 不错,官方文档,可做参考
  • 很好的参考资料,新手必读。
  • 不错,解决了我的问题