技术的乐趣在于分享,欢迎多多交流,多多沟通。
全部博文(877)
发布时间:2015-09-14 10:20:05
oc没有严格的方法重载.在oc中,方法名不允许相同。比如<br />-(void) test:(int) intValue;<br />-(void) test:(float) floatValue;<br />在oc中是不允许的,因为它们的名字都是test:,注意,名字要包括后面的冒号。<br />所以在oc 中的重载应该是指参数个数不同,但是返回类型后面的名字相同。<br />或者是 参数个数.........【阅读全文】
发布时间:2015-09-10 10:55:40
http://blog.csdn.net/wangxiaobupt/article/details/47035423<br /><h2 style="margin:0px;padding:0px;font-family:Arial;line-height:26px;white-space:normal;background-color:#FFFFFF;">UIProgressView</h2><p style="margin-top:0px;margin-bottom:0px;font-family:Arial;font-size:14px;line-height:26px;whit.........【阅读全文】
发布时间:2015-09-10 10:52:46
http://blog.csdn.net/hwl1314/article/details/26820013<br /><div class="dp-highlighter bg_html" style="font-family:Consolas, 'Courier New', Courier, mono, serif;font-size:12px;width:700.90625px;overflow:auto;padding-top:1px;color:#333333;line-height:26px;white-space:normal;margin:18px 0px !important.........【阅读全文】
发布时间:2015-09-10 10:51:39
<a href="http://blog.csdn.net/weisubao/article/details/39558109" style="color:#000000;text-decoration:none;font-family:'Microsoft YaHei';font-size:20px;line-height:30px;white-space:normal;background-color:#FFFFFF;">UIProgressView进度条的几个属性介绍</a><br />http://blog.csdn.net/weisubao/article/de.........【阅读全文】
发布时间: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.........【阅读全文】