摘要: 一:unable to boot the ios simulator:模拟器异常 1.在添加了新的xcode版本调试包时,出现旧版模拟器不支持的情况,关闭旧版模拟器,重新运行 二:Could not find Developer Disk Image:真机调试异常 1.当前Xcode不支持当前手机系 阅读全文
posted @ 2016-10-09 10:52 会飞的夜良 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 方式一:图片封装在模型数组中 /** * 上传多图到服务器 * * @param URLString 请求地址 * @param parameters 请求的其他参数 * @param paramModelArray 图片模型数组 * @param success 成功回调 * @param fai 阅读全文
posted @ 2016-09-28 12:10 会飞的夜良 阅读(1401) 评论(0) 推荐(0) 编辑
摘要: button默认不给宽度:系统Xib自动适配,最小宽度30.在使用宽度计算时,无法小于这个值 阅读全文
posted @ 2016-09-23 17:01 会飞的夜良 阅读(333) 评论(0) 推荐(0) 编辑
摘要: 1.AppDelegate.h @property (assign, nonatomic) BOOL allowRotation; 2.AppDelegate.m #pragma mark - 自动旋屏相关-(UIInterfaceOrientationMask)applicaxtion:(UIAp 阅读全文
posted @ 2016-08-24 17:08 会飞的夜良 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 需要注意的是,只能修改可选约束的优先级,也就是说: 不允许将优先级由小于1000的值改为1000 不允许将优先级由1000修改为小于1000的值 例如,如果将优先级由250修改为1000,则会抛出异常: *** Terminating app due to uncaught exception 'N 阅读全文
posted @ 2016-08-10 16:20 会飞的夜良 阅读(1416) 评论(0) 推荐(0) 编辑
摘要: 1.CollectionView的刷新必须首先保证CollectionView有高度 注意事项:在cell中嵌套CollectionView,如果使用的是AutoLayout的话,一定要注意保证CollectionView的高度,这样才能保证无论如何刷新,数据才会正常显示。 2.如果一个控制器里有定 阅读全文
posted @ 2016-08-05 15:16 会飞的夜良 阅读(585) 评论(0) 推荐(0) 编辑
摘要: #import @class XHDownLoadManager; #pragma mark - delegate Method @protocol XHDownLoadManagerDelegate /** 下载失败*/ - (void)downLoadFailed:(XHDownLoadManager *)downLoadManager withError:(NSError *)er... 阅读全文
posted @ 2016-07-15 14:27 会飞的夜良 阅读(155) 评论(0) 推荐(0) 编辑
摘要: Local declaration of 'XXX' hides instance variable Local declaration of 'XXX' hides instance variable Local declaration of 'XXX' hides instance variab 阅读全文
posted @ 2016-06-25 10:02 会飞的夜良 阅读(359) 评论(0) 推荐(0) 编辑
摘要: /** 本地加载方式加载JS*/ NSString *path = [[NSBundle mainBundle] pathForResource:@"jquery.js" ofType:nil]; NSString *path2 = [[NSBundle mainBundle] pathForRes 阅读全文
posted @ 2016-06-03 17:42 会飞的夜良 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 1.导航侧滑全屏返回的原因:上一个控制器的导航条是隐藏状态。 连同导航侧滑返回手势消失 self.navigationController.navigationBarHidden = YES; 只消失导航 self.navigationController.navigationBar.hidden 阅读全文
posted @ 2016-06-02 17:29 会飞的夜良 阅读(2073) 评论(0) 推荐(0) 编辑