【分享】 iPhone开发经典语录集锦

2009年12月26日 | laifangwen

前言: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.

 

 

5alloc需要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,而是NSSetUIView

what you touch on screen is not UIEvent but UIView

 

暂时想到这些,欢迎大家继续补充......^_^!

作者:孙东风

来源:http://blog.csdn.net/dongfengsun/archive/2009/11/25/4870650.aspx

Tags: 实例  object-c  手机  软件  程序  
相关文章:

黑莓手机开发入门:如何为BlackBerry黑莓手机开发应用软件  (2009-11-20 11:51:31)

分享一个绿色好用的颜色拾取器Pixel_Pick  (2009-11-17 9:46:36)

摩天轮:摩天轮愚人游戏软件下载  (2009-6-20 22:33:26)

UITable View实例教程:分组显示列表  (2009-6-18 11:31:30)

UITableView实例教程:创建Table View的detail view  (2009-6-16 17:32:57)

UITableView使用实例:创建一个简单的Table View  (2009-6-16 11:40:59)

acer aspire 4520g安装mac os 10.5.6下的系统信息一览  (2009-3-28 17:49:1)

acer aspire 4520g初步成功安装mac os pc版  (2009-3-10 13:56:51)

手机JAVA软件修改权限  (2008-2-1 15:56:44)

正则表达式30分钟入门教程  (2007-12-27 12:0:11)

引用通告地址: http://blog.laifangwen.com/cmd.asp?act=gettburl&id=252

评论: 0 | 引用: 0 | 浏览:
名称(*):
邮箱:
网站链接:
正文(*):
选 项:
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。