技术的乐趣在于分享,欢迎多多交流,多多沟通。
全部博文(877)
发布时间:2015-09-09 15:28:13
//author<br />//jeffasd<br />//Block 用法小解<br /><br /><br />//A.h文件<br />//定义Block<br />typedef void(^ AmountBlock)(int salary);//定义一个AmountBlock类型的Block<br />@property(nonatomic, copy)AmoutBlock amount2;//用AmountBlock类型定义Block 变量<br /><br /><br />- (void)paySalaryF.........【阅读全文】
发布时间:2015-08-27 10:49:58
<p style="margin-top:0px;margin-bottom:0px;color:#333333;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:14px;white-space:normal;">使用了 ARC 之后,无疑大大减少了程序员进行内存管理的压力。你再也不用写 release/autorelease 代码了,再也不用写dealloc 方法了。但这不等于程序员不需要内存管理.........【阅读全文】