摘要: 一、错误提示 今天在开发的时候遇到一个崩溃问题,“This application is modifying the autolayout engine from a background thread, which can lead to engine corruption and weird c 阅读全文
posted @ 2017-01-10 13:46 Jaycee麦子 阅读(859) 评论(0) 推荐(0) 编辑
摘要: 今天在看到App Store 上架过程中,苹果公司反馈的拒绝原因发现了这么一个问题: Legal - 5.1.5 Your app uses background location services but does not clarify the purpose of its use in the 阅读全文
posted @ 2017-01-06 09:32 Jaycee麦子 阅读(2685) 评论(0) 推荐(1) 编辑
摘要: 崩溃提示:Terminating app due to uncaught exception 'NSGenericException', reason: '*** Collection <CALayerArray: 0x14df0bd0> was mutated while being enumer 阅读全文
posted @ 2017-01-04 16:02 Jaycee麦子 阅读(8542) 评论(1) 推荐(1) 编辑
摘要: 1. 最直接的方法: [self performSelector:@selector(deleyMethod) withObject:nil afterDelay:1.0]; 此方式要求必须在主线程中执行,否则无效。是一种非阻塞的执行方式,暂时未找到取消执行的方法。 [self performSel 阅读全文
posted @ 2016-11-30 11:10 Jaycee麦子 阅读(1703) 评论(0) 推荐(0) 编辑
摘要: 思路: 实现: 阅读全文
posted @ 2016-11-24 13:53 Jaycee麦子 阅读(18519) 评论(0) 推荐(0) 编辑
摘要: 模拟器的位置: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs 文档安装位置: /Applications/Xcode.app/Contents/Develope 阅读全文
posted @ 2016-11-21 13:24 Jaycee麦子 阅读(451) 评论(0) 推荐(0) 编辑
摘要: 1 /* 2 ** lineFrame: 虚线的 frame 3 ** length: 虚线中短线的宽度 4 ** spacing: 虚线中短线之间的间距 5 ** color: 虚线中短线的颜色 6 */ 7 + (UIView *)createDashedLineWithFrame:(CGRec 阅读全文
posted @ 2016-11-21 11:02 Jaycee麦子 阅读(480) 评论(0) 推荐(0) 编辑
摘要: 1 //判断手机号码格式是否正确 2 + (BOOL)valiMobile:(NSString *)mobile{ 3 mobile = [mobile stringByReplacingOccurrencesOfString:@" " withString:@""]; 4 if (mobile.l 阅读全文
posted @ 2016-11-21 10:57 Jaycee麦子 阅读(1288) 评论(0) 推荐(0) 编辑
摘要: 1 /** 2 * 计算上次日期距离现在多久 3 * 4 * @param lastTime 上次日期(需要和格式对应) 5 * @param format1 上次日期格式 6 * @param currentTime 最近日期(需要和格式对应) 7 * @param format2 最近日期格式 阅读全文
posted @ 2016-11-21 10:55 Jaycee麦子 阅读(1812) 评论(0) 推荐(0) 编辑
摘要: R G B 值 R G B 值 R G B 值 黑色 0 0 0 #000000 黄色 255 255 0 #FFFF00 浅灰蓝色 176 224 230 #B0E0E6 象牙黑 41 36 33 #292421 香蕉色 227 207 87 #E3CF57 品蓝 65 105 225 #4169 阅读全文
posted @ 2016-11-18 15:33 Jaycee麦子 阅读(1884) 评论(0) 推荐(0) 编辑