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

本文共 1162 字,大约阅读时间需要 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.

 

 

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

 

转载于:https://www.cnblogs.com/ranger-cc/p/3503739.html

你可能感兴趣的文章
python3 发送邮件添加附件
查看>>
Sublime Text 3 使用备注
查看>>
Hadoop 停止Job
查看>>
几个重点问题回顾
查看>>
隐藏空的cell
查看>>
转: Centos安装gcc及g++
查看>>
转:安桌开发开源库的推荐1
查看>>
学习总结(Java)
查看>>
怎么修改tomcat端口
查看>>
设置border为虚线
查看>>
HDU - 5753 多校联萌3-2
查看>>
lucene3.6.0的文档评估机制
查看>>
ZOJ 3822 Domination DP
查看>>
阿里云的服务器内网互通的前提条件
查看>>
document/window的基础知识
查看>>
复习事件委托
查看>>
wordpress 如何防止盗链
查看>>
请大家一定善用emule!
查看>>
Educational Codeforces Round 13 B. The Same Calendar 水题
查看>>
纠正部分Linux初学者对ctime的误解
查看>>