iPhone開發經典語錄集錦

本文系轉載,原文地址:http://blog.csdn.net/dongfengsun/article/details/4870650

 

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

發佈了9 篇原創文章 · 獲贊 0 · 訪問量 3萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章