摘要: http://blog.csdn.net/lovenjoe/article/details/8166548 阅读全文
posted @ 2015-04-27 17:40 小小小小羔羊 阅读(89) 评论(0) 推荐(0) 编辑
摘要: https://github.com/leancloud/leanchat-ios 阅读全文
posted @ 2015-04-20 15:08 小小小小羔羊 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 一般是导入第三方库的时候出现的错误1,导入文件缺失,包括缺失XXXX.a文件,或者系统框架文件2, 文件重复导入,特别是ViewController,如果导入的同名字的ViewController有两个,那么在alloc的时候就会报这个错误,因为系统不知道要alloc哪一个, 我今天遇到这个问题就... 阅读全文
posted @ 2015-04-20 11:01 小小小小羔羊 阅读(230) 评论(0) 推荐(0) 编辑
摘要: for (id obj in self.view.subviews) { if ([obj isKindOfClass:[UIButton Class]]) { UIButton* theButton = (UIButton*)obj;theButton.xxx = ooo; ... 阅读全文
posted @ 2015-04-16 14:07 小小小小羔羊 阅读(376) 评论(0) 推荐(0) 编辑
摘要: 参照文章:http://www.cnblogs.com/gcb999/p/3223469.html http://blog.sina.com.cn/s/blog_9693f61a01016alr.html@interface ViewController ()@end@implem... 阅读全文
posted @ 2015-04-15 14:13 小小小小羔羊 阅读(1327) 评论(0) 推荐(0) 编辑
摘要: 1、调用 自带mail[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://admin@hzlzh.com"]];2、调用 电话phone[[UIApplication sharedApplication... 阅读全文
posted @ 2015-04-15 14:11 小小小小羔羊 阅读(142) 评论(0) 推荐(0) 编辑