博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iPhone开发经典语录集锦 (转)
阅读量:5161 次
发布时间:2019-06-13

本文共 1182 字,大约阅读时间需要 3 分钟。

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

 
from:

转载于:https://www.cnblogs.com/zjz008/archive/2011/04/19/2021626.html

你可能感兴趣的文章
浏览器对属性兼容性支持力度查询网址
查看>>
OO学习总结与体会
查看>>
虚拟机长时间不关造成的问题
查看>>
面试整理:Python基础
查看>>
Python核心编程——多线程threading和队列
查看>>
Program exited with code **** 相关解释
查看>>
植物大战僵尸中文年度版
查看>>
26、linux 几个C函数,nanosleep,lstat,unlink
查看>>
投标项目的脚本练习2
查看>>
201521123107 《Java程序设计》第9周学习总结
查看>>
Caroline--chochukmo
查看>>
iOS之文本属性Attributes的使用
查看>>
从.Net版本演变看String和StringBuilder性能之争
查看>>
Excel操作 Microsoft.Office.Interop.Excel.dll的使用
查看>>
解决Ubuntu下博通网卡驱动问题
查看>>
【bzoj2788】Festival
查看>>
执行gem install dryrun错误
查看>>
HTML5简单入门系列(四)
查看>>
实现字符串反转
查看>>
转载:《TypeScript 中文入门教程》 5、命名空间和模块
查看>>