xcode7.0使用问题:
问题:编译提示"was built for newer iOS version (8.4) than being linked (7.0)"
解决:building setting ->other linker Flags 条目里面添加 -w
说明:xcode7 bug
DZNEmptyDataSet使用问题:
设备: ios7.0 系统 -5c
问题:其点击事件不响应(tap)
具体说明:- (void)emptyDataSetDidTapView:(UIScrollView *)scrollView;不响应
xcode8 系统出现多余日志:
解决办法:editScheme-> 环境变量-> 添加新的环境变量:OS_ACTIVITY_MODE = disable
加载xib 崩溃
- 1.正确的加载xib的方式
加载ViewController
GoodListGuideVC * vc = [[GoodListGuideVC alloc] initWithNibName:@"GoodListGuideVC" bundle:nil];
LearningView *noDataView = [[NSBundle mainBundle] loadNibNamed:@"LearningView" owner:self options:nil].firstObject;