摘要:
一、错误提示 今天在开发的时候遇到一个崩溃问题,“This application is modifying the autolayout engine from a background thread, which can lead to engine corruption and weird c 阅读全文
摘要:
今天在看到App Store 上架过程中,苹果公司反馈的拒绝原因发现了这么一个问题: Legal - 5.1.5 Your app uses background location services but does not clarify the purpose of its use in the 阅读全文
摘要:
崩溃提示:Terminating app due to uncaught exception 'NSGenericException', reason: '*** Collection <CALayerArray: 0x14df0bd0> was mutated while being enumer 阅读全文
摘要:
1. 最直接的方法: [self performSelector:@selector(deleyMethod) withObject:nil afterDelay:1.0]; 此方式要求必须在主线程中执行,否则无效。是一种非阻塞的执行方式,暂时未找到取消执行的方法。 [self performSel 阅读全文
摘要:
思路: 实现: 阅读全文
摘要:
模拟器的位置: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs 文档安装位置: /Applications/Xcode.app/Contents/Develope 阅读全文
摘要:
1 /* 2 ** lineFrame: 虚线的 frame 3 ** length: 虚线中短线的宽度 4 ** spacing: 虚线中短线之间的间距 5 ** color: 虚线中短线的颜色 6 */ 7 + (UIView *)createDashedLineWithFrame:(CGRec 阅读全文
摘要:
1 //判断手机号码格式是否正确 2 + (BOOL)valiMobile:(NSString *)mobile{ 3 mobile = [mobile stringByReplacingOccurrencesOfString:@" " withString:@""]; 4 if (mobile.l 阅读全文
摘要:
1 /** 2 * 计算上次日期距离现在多久 3 * 4 * @param lastTime 上次日期(需要和格式对应) 5 * @param format1 上次日期格式 6 * @param currentTime 最近日期(需要和格式对应) 7 * @param format2 最近日期格式 阅读全文
摘要:
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 阅读全文