iPhone开发经典语录集锦

网友投稿 251 2022-08-24

iPhone开发经典语录集锦

前言:iPhone是个极具艺术性的平台,相信大家在开发过程中一定有很多感触,希望能写出来一起交流,所以开了这个帖子,以后还会维护。

如果大家和我一样有感触的话,可以跟在帖子下面,最好简短并附上中英文:)

1:如果无法保证子类行为的一致性,那么就用委托

If the subClass cann't keep with superClass,use delegate rather than inheritance.

2:屏幕上看到的,都是UIVew

Everything you see on Screen is UIView.

3:如果对性能要求高,慎用Interface Build

if application's performance is important,be discreet for the interface build.

4:copy是创建,retain是引用

the copy operation is create a new one,but the retain operation is just a reference.

5:alloc需要release,convenient不需要release

alloc method need corresponding release method,but convenient method not.

6:加载到NSArray/NSMutableArray里的对象,不需要负责release

The objects added to NSArray/NSMutableArray need not to be released.

7:IBOutlet,IBAction为你开启了访问Interface Build中对象的大门

IBOutlet and IBAction open the door to access the objects in Interface build.

8:UIApplicationDelegate负责应用程序的生命周期,而UIViewController负责View的生命周期

UIApplicationDelegate is responsible for the application life cycle,but UIViewController for the UIView.

9:为了程序的健壮性,请尽量实现Delegate的生命周期函数

if you want to develop a robust application,implement the life cycle methods as more as possbile.

10:哥触摸的不是UIEvent,而是NSSet的UIView

what you touch on screen is not UIEvent but UIView

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:护城河薄弱、营销费用居高不下,妙可蓝多焦虑前行!
下一篇:Objective-C语法之Objective-C语言和iOS系统(简介,语法,系统结构)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~