上一页 1 2 3 4 5 6 7 8 ··· 14 下一页
摘要: 1.下载所需降级版本iOS https://ipsw.me 降级所需工具: iTunes(12或者是更高的版本) iOS 12.1.4版本固件 待降级的iPhone手机 一根数据线( 一台电脑(Windows/Mac均可操作) 具体操作步骤如下: 步骤一:将iPhone手机通过数据线连接到电脑上,并 阅读全文
posted @ 2019-04-01 14:23 柳仙慧子 阅读(7169) 评论(0) 推荐(1) 编辑
摘要: #import <sys/utsname.h> //手机型号 NSString *device = [self iphoneType]; + (NSString *)iphoneType { struct utsname systemInfo; uname(&systemInfo); NSStrin 阅读全文
posted @ 2019-03-21 11:08 柳仙慧子 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 当在xcode添加新设备的时候,遇到A valid provisioning profile for this executable was not found的问题,从开发者后台来主动添加。 具体如下: 1.进入苹果的开发者网站:https://developer.apple.com 点击Cert 阅读全文
posted @ 2019-03-20 10:50 柳仙慧子 阅读(2440) 评论(0) 推荐(0) 编辑
摘要: 1. 准备好一个企业邮箱 、企业营业执照复印件、一张可以支付的VISA或者MasterCard 2. 2016/01/13 注册appid https://developer.apple.com/programs/ios/ 3. 2016/01/13 申请邓白氏编码https://developer 阅读全文
posted @ 2019-03-20 10:40 柳仙慧子 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 1.真机连接数据线到mac上面 2.打开xcode选择Window-->Devices and Simulators-->左边选择设备-->右击Unpair Device-->信任-->输入密码-->勾选Connect via network 阅读全文
posted @ 2019-02-26 19:26 柳仙慧子 阅读(1627) 评论(0) 推荐(0) 编辑
摘要: 真机调试build success ,App installation failed (A valid provisioning profile for this executable was not found) File-->Workspace Settings --> Build System 阅读全文
posted @ 2019-01-29 11:33 柳仙慧子 阅读(489) 评论(0) 推荐(0) 编辑
摘要: 当nstimer在主线程创建时,当滑动时,系统为了更好的处理UI事件,会暂停timer,解决办法就是改变timer的mode,不使用缺省的NSDefaultRunLoopMode,而是改用NSRunLoopCommonModes NSTimer *timer = [NSTimer timerWith 阅读全文
posted @ 2017-05-12 12:04 柳仙慧子 阅读(127) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2017-05-10 14:07 柳仙慧子 阅读(2) 评论(0) 推荐(0) 编辑
摘要: [self convertToJsonData:_editDictionary]; /** 字典转json字符串方法 */ -(NSString *)convertToJsonData:(id)dict { NSError *error; NSData *jsonData = [NSJSONSeri 阅读全文
posted @ 2017-05-06 13:41 柳仙慧子 阅读(1705) 评论(0) 推荐(0) 编辑
摘要: //1.原始数组 NSMutableArray *arr = [NSMutableArray arrayWithObjects:@"1",@"2",@"3",nil]; //2.倒序的数组 NSArray* reversedArray = [[arr reverseObjectEnumerator] 阅读全文
posted @ 2017-04-25 17:22 柳仙慧子 阅读(169) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 14 下一页