最近用Swift开发项目,经常碰到一些问题,有时候重复碰到,有时候是粗心,但是看到控制台报的错误却不知所措,现在开始,慢慢记录Swift开发碰到的问题,不断积累!
问题一、tableView设置区域头高度问题,报的错误是:
Terminating app due to uncaught exception 'NSInternalInconsistencyException',reason: 'section header height must not be negative - provided height for section 1 is -0.001000'
一看就知道是header问题,改一下下面那行代码,
func tableView(tableView: UITableView,estimatedHeightForHeaderInSection section: Int) -> CGFloat { return 0.001 }改为
func tableView(tableView: UITableView,heightForFooterInSection section: Int) -> CGFloat { return 0.001 }这样问题就解决了;
问题二、之前是swift2.3的工程,现在xcode更新了,有一些api更新,所以需要转码,怎么解决呢?
最后还有错误,是不是要崩溃了,这时,按一下顺序执行:edit ——>convert——>to current swift ....,万事大吉了吗?答案是NO,这时还会有错,没有别的办法了,只能一个个错误解决了!
原文链接:https://www.f2er.com/swift/322581.html