12 2016 档案

摘要:图片上绘制文字 写一个UIImage的category NSMutableParagraphStyle* paragraphStyle = [[NSParagraphStyle defaultParagraphStyle] mutableCopy]; paragraphStyle.lineBreakMode = NSLineBreakByCharWrapping; ... 阅读全文
posted @ 2016-12-28 11:40 guangleijia 阅读(224) 评论(0) 推荐(0)
摘要:UITableView的Group样式下顶部空白处理 //分组列表头部空白处理 UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 0, 0.1)]; self.tableView.tableHeaderView = view; UITableView的plain样式下,取消区头停滞效果 - (void)scrol... 阅读全文
posted @ 2016-12-28 11:12 guangleijia 阅读(189) 评论(0) 推荐(0)
摘要:背景:最近电脑升级了系统macOS Sierra 10.12.1;Xcode 也升级到了Version 8.1 (8B62)。 问题:使用Application Loader3.0 上传应用到iTunes connect 遇到报错:ERROR ITMS-90168:"The binary you u 阅读全文
posted @ 2016-12-22 15:50 guangleijia 阅读(3226) 评论(0) 推荐(0)
摘要:1 #import "ViewController.h" 2 #import "RunloopViewController.h" 3 @interface ViewController () 4 5 @property (nonatomic , assign) NSInteger currentIndex; 6 7 @property (nonatomic) CA... 阅读全文
posted @ 2016-12-01 15:53 guangleijia 阅读(451) 评论(1) 推荐(0)