遇到的问题集锦

1.CFNetwork internal error 

(0xc01a:/BuildRoot/Library/Caches/com.apple.xbs/Sources/CFNetwork_Sim/CFNetwork-758.2.8/Loading/URLConnectionLoader.cpp:289)

原因:网络请求接口使用的是http不是https请求。

解决办法: 修改info.plist

在App Transport Security Settings之下  NSExceptionDomains 添加

NSExceptionRequiresForwardSecrecy : NO

NSIncludesSubdomains:YES

NSExceptionAllowInsecureHTTPLoads : YES

遇到的问题集锦_第1张图片

链接:苹果官方文档


2.the view outlet was not set

[UIViewController _loadViewFromNibNamed:bundle:] loaded the "LoginViewController" nib but the view outlet was not set.'

原因:在创建一个控制器或者cell等的.xib文件时没有添加的view的控制器,找不到LoginViewController的xib文件或者没法加载LoginViewController的view

解决办法:添加LoginViewController下xib文件的控制器 File‘s owner 关联一下就ok了

遇到的问题集锦_第2张图片

链接:暂无



3 This will cause an exception in a future release.

This application is modifying the autolayout engine from a background thread, which can lead to engine corruption and weird crashes.  This will cause an exception in a future release.

原因:在项目运行时,在子线程刷新了主视图,导致会在以后的过度release

解决办法:在项目中添加全局断点,找到那个子线程任务,把刷新或者添加在主视图的任务放在主线程,


遇到的问题集锦_第3张图片
设置全局断点

dispatch_async(dispatch_get_main_queue(), ^{

// 主线程任务

//reload coder

});

链接:无


4.Terminating app due to uncaught exception 'NSInternalInconsistencyException'

'unable to dequeue a cell with identifier cellid - must register a nib or a class for the identifier or connect a prototype cell in a storyboard'

原因:1.没有注册cell 2.在从栈中复用cell的时候给了角标

解决:

1.注册cell 给storyboard或者自定义的cell添加identifier  

2.在初始化TableView时注册cell:[self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:cellid];如果使用了自定义的cell 改为[self.tableView registerNib:[UINib nibWithNibName:@"自定义cell的类名" bundle:nil] forCellReuseIdentifier:cellid];

3.UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellid forIndexPath:indexPath];

改为UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellid];

链接 :


5.iOS 9 failed for URL: "XXX://@" - error: "This app is not allowed to query for scheme XXX"  应用间跳转

原因:未设置应用跳转白名单

解决办法:在跳转的应用中设置白名单LSApplicationQueriesSchemes


item0 的string是需要跳转的应用的 URL Scheme

***

一个iOS学习路上的小学僧,欢迎指正!

***

你可能感兴趣的:(遇到的问题集锦)