Objective-c
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 评论 -
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 评论 -
Tutorial: iOS 6 Auto Layout versus Springs and Struts - Part 3 of 3
Tutorial: iOS 6 Auto Layout versus Springs and Struts - Part 3 of 3This tutorial is an excerpt from our book series iOS App Development for Non-Programmers, available in the iBookStore for the iPa转载 2013-12-05 10:11:47 · 1019 阅读 · 0 评论 -
Tutorial: iOS 6 Auto Layout versus Springs and Struts - Part 2 of 3
Tutorial: iOS 6 Auto Layout versus Springs and Struts - Part 2 of 3This tutorial is an excerpt from our book series iOS App Development for Non-Programmers, available in the iBookStore for the iPa转载 2013-12-05 10:08:37 · 1276 阅读 · 0 评论 -
Tutorial: iOS 6 Auto Layout versus Springs and Struts - Part 1 of 3
This tutorial is an excerpt from our book series iOS App Development for Non-Programmers, available in the iBookStore for the iPad, and on Amazon.Part 1 discusses the two layout options, then dive转载 2013-12-05 10:07:03 · 1072 阅读 · 1 评论 -
iOS设计模式(02):单例模式
singleton-design-pattern什么是单例模式?单例模式是一个类在系统中只有一个实例对象。通过全局的一个入口点对这个实例对象进行访问。在iOS开发中,单例模式是非常有用的一种设计模式。如下图,是一个单例模式的UML类图。singleton_uml_class_structure iOS SDK中也有许多类使用了单例模式,例如,UIApplic转载 2013-11-14 13:13:54 · 740 阅读 · 0 评论 -
Ojective-c 单例模式的另一种
IOS单例模式(Singleton)单例模式的意思就是只有一个实例。单例模式确保某一个类只有一个实例,而且自行实例化并向整个系统提供这个实例。这个类称为单例类。1.单例模式的要点: 显然单例模式的要点有三个;一是某个类只能有一个实例;二是它必须自行创建这个实例;三是它必须自行向整个系统提供这个实例。2.单例模式的优点: 1.实例控制:Singleton 会阻转载 2013-11-14 13:14:46 · 787 阅读 · 0 评论 -
Objective-C 的 self 和 super 详解
Objective-C 的 self 和 super 详解在 Objective-C 中的类实现中经常看到这两个关键字 self 和 super,以以前 oop 语言的经验,拿 c++ 为例,self 相当于 this,super 相当于调用父类的方法,这么看起来是很容易理解的。以下面的“”阅读器转载 2013-11-14 12:10:51 · 735 阅读 · 0 评论 -
iOS开发教程:Storyboard全解析-第一部分
http://www.dasheyin.com/ios_kai_fa_jiao_cheng_storyboard_quan_jie_xi_-_di_yi_bu_fen.html故事版(Storyboard)是一个能够节省你很多设计手机App界面时间的新特性,下面,为了简明的说明Storyboard的效果,我贴上本教程所完成的Storyboard的截图: 现在,你就可以清楚的看到转载 2013-11-25 11:52:33 · 657 阅读 · 0 评论 -
【转】self.myOutlet=nil、viewDidUnload、dealloc的本质剖析
对于iphone开发人员来说,内存管理是极为重要的技巧,哪怕程序的功能再强大,设计再漂亮,如果内存控制不好,也难逃程序莫名退出的噩运,这与网页开发是完全不同的。内存控制里面有很多门道,在这里分析一下 viewDidUnload 和 dealloc 的区别,关于这两者的区别的文章很多,但是大都是摘抄和翻译官方文档,有的也只是简单的说两句,并没有详细说出两者具体的区别。在了解两者之间的转载 2013-11-19 17:33:00 · 703 阅读 · 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 评论 -
Objective-C and retain/release of returned objects
Objective-C and retain/release of returned objectsI am new to Objective-C, so this might be a dumb question.I cannot help but see the similarities between ObjC and Microsoft's COM with res转载 2013-11-18 09:52:55 · 871 阅读 · 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 评论