iOS 导航条小结

摘要: 1、在创建控制器的时候,只有调用viewController.view (eg:viewControllera.view.backgroundColor = [UIColor redColor])。就会立即调用控制器生命周期方法的loadView,然后就调用viewDidLoad。然后返回到view 阅读全文
posted @ 2015-12-11 11:08 森code 阅读(289) 评论(0) 推荐(0) 编辑

面试题集

摘要: http://blog.csdn.net/xiaoxiangzhu660810/article/details/8156053 阅读全文
posted @ 2015-12-10 13:40 森code 阅读(101) 评论(0) 推荐(0) 编辑

iOS 设置UITextField的placeholder属性的颜色

摘要: NSDictionary *attrDict = @{NSForegroundColorAttributeName : [UIColor redColor]}; NSAttributedString *attrStr = [[NSAttributedString alloc] init... 阅读全文
posted @ 2015-12-09 18:14 森code 阅读(250) 评论(0) 推荐(0) 编辑

16进制的颜色值 定义宏

摘要: #define kColorFromRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blu... 阅读全文
posted @ 2015-12-09 11:39 森code 阅读(355) 评论(0) 推荐(0) 编辑

iOS 打包ipa 教程

摘要: http://blog.csdn.net/hengshujiyi/article/details/21182843 阅读全文
posted @ 2015-12-07 10:56 森code 阅读(126) 评论(0) 推荐(0) 编辑

iOS绘图

摘要: http://www.cnblogs.com/kenshincui/p/3959951.html 阅读全文
posted @ 2015-12-05 21:45 森code 阅读(104) 评论(0) 推荐(0) 编辑

真机调试和发布应用

摘要: 证书配置及详解:http://blog.csdn.net/phunxm/article/details/42685597上传应用:http://www.bubuko.com/infodetail-648771.html 阅读全文
posted @ 2015-12-05 09:19 森code 阅读(142) 评论(0) 推荐(0) 编辑

拼接的JSON字符串

摘要: DefaultJsonString = @"{\"RowsetRowId\": -1,\ \"OriginalRowid\": -1,\ \"Type\": 0,\ \"_id\": null,\ \"rowkey\": null,\ ... 阅读全文
posted @ 2015-12-04 09:44 森code 阅读(482) 评论(0) 推荐(0) 编辑

OC中定义属性不能以 new、copy、alloc等关键字开头

摘要: 如果我们定义属性以new、copy、alloc等关键词开头!!会报错。Property's synthesized getter follows Cocoa naming convention for returning 'owned' 阅读全文
posted @ 2015-12-03 18:31 森code 阅读(351) 评论(0) 推荐(0) 编辑

YYKit的博客

摘要: http://blog.ibireme.com/category/tec/ios-tec/ 阅读全文
posted @ 2015-12-01 22:29 森code 阅读(273) 评论(0) 推荐(0) 编辑