cocoa
insect27
这个作者很懒,什么都没留下…
展开
-
iOS5 ARC,IBOutlets 应该定义strong还是weak
写这篇文章的缘由,是因为我泡在stackoverflow上翻帖子,看到一个名为Should IBOutlets be strong or weak under ARC? 的帖子很热,而我对被采纳为标准答案的回答也有一些话要补充,我想对于每一个初识ARC模式的人来说,都会有这个疑问,所以不妨我也来和大家探讨一下。有人问,在ARC下,IBOutlets到底应该定义成strong转载 2013-11-18 14:40:58 · 844 阅读 · 0 评论 -
Should IBOutlets be strong or weak under ARC?
I am developing exclusively for iOS 5 using ARC. Should IBOutlets to UIViews (and subclasses) bestrong or weak?The following:@property (nonatomic, weak) IBOutlet UIButton *button;Would g转载 2013-11-18 15:50:17 · 636 阅读 · 0 评论 -
What happens if I don't retain IBOutlet?
在iphone中,只要控件使用IBOutlet连接 ,则必须release它。无论它是否有@property(nonatomic,assign),@property(nonatomic,retain)属性。原因如下:On Mac OS X, IBOutlets are connected like this:Look for a method转载 2013-11-18 15:47:34 · 903 阅读 · 0 评论 -
【转】self.myOutlet=nil、viewDidUnload、dealloc的本质剖析
对于iphone开发人员来说,内存管理是极为重要的技巧,哪怕程序的功能再强大,设计再漂亮,如果内存控制不好,也难逃程序莫名退出的噩运,这与网页开发是完全不同的。内存控制里面有很多门道,在这里分析一下 viewDidUnload 和 dealloc 的区别,关于这两者的区别的文章很多,但是大都是摘抄和翻译官方文档,有的也只是简单的说两句,并没有详细说出两者具体的区别。在了解两者之间的转载 2013-11-19 17:33:00 · 703 阅读 · 0 评论 -
ios 前后摄像头翻转动画
create flip animation like rotate animation in native camera app CATransition *animation = [CATransitionanimation]; animation.duration = .5f; animation.timingFunction = [CAM翻译 2014-02-19 16:14:33 · 1563 阅读 · 0 评论