
IOS
iamstillzhang
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
【xcode杂项】找不到类的错误
oc是运行时才寻找方法,有可能在运行的时候找不到类,可以关注下这里是否加入.m文件原创 2012-12-06 09:50:16 · 822 阅读 · 0 评论 -
KVC(Key-Value Coding)
Key-value codingis a mechanism for accessing an object’s properties indirectly, using strings to identify properties, rather than through invocation of an accessor method or accessing them directly转载 2012-11-07 10:10:04 · 540 阅读 · 0 评论 -
【Frameworks】Cocoa Frameworks--框架总述
The Cocoa (Application) layer includes the frameworks described in the following sections. Cocoa in the architecture of OS X Cocoa Umbrella Framework The Cocoa umbrella framework (Cocoa转载 2012-11-07 14:59:16 · 2203 阅读 · 0 评论 -
【UIKit.framework】UIView UIControl UIViewController
UIView: The UIView class defines a rectangular area on the screen and the interfaces for managing the content in that area. At runtime, a view object handles the rendering of any content in its are转载 2012-11-19 19:17:51 · 1804 阅读 · 0 评论 -
iOS性能优化系列
http://ke.indiebros.com/2012/08/20/ios-app-performance-strategy/ 性能问题的处理流程 发现/重现问题利用工具剖析形成假设改进代码和设计 在以上的四个步骤中循环反复,直到问题解决。 Profile!不要猜! 性能优化的主要策略: 不要做无用功:不要在启动时花几百ms来做logg转载 2012-12-06 12:15:21 · 1314 阅读 · 0 评论 -
【NSConnection】使用NSConnection下载数据
http://blog.sina.com.cn/s/blog_6f40a0e70100srix.html 1.创建NSConnection对象,设置委托对象 NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:[self urlStrin转载 2012-12-06 11:08:42 · 3938 阅读 · 0 评论 -
KVO(Key-Value Observing)
The observing class must implement observeValueForKeyPath:ofObject:change:context:. Registering as an Observer In order to be notified of changes to a property, an observing object must firs转载 2012-11-07 10:41:07 · 1406 阅读 · 0 评论