Xcode 9 bug 以及 iOS 11 某些适配问题

2017-09-26  本文已影响85人  厨子

Xcode 9 崩溃

Xcode9rename 功能可以把在整个工程中所有使用了目标文件的文件名都更新掉, 但其使用结果是有喜又有悲:

操作

如何避免

在弹出的输入框中直接输入设定的名字

这个 Bug 我已经提交给 Apple <Bug Reporter>

iOS11

在 iOS11 系统下,UITableView 的底部 会多出一块空白区域,你可以设置背景色试试,就会看到这个多出的区域

原因

UITableView 底部多出的这个区域是 Section Footer View

解决方法

需要实现 UITableViewDelegate 方法 tableView: viewForFooterInSection: 并返回 nil

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{
    return nil;
}
上一篇 下一篇

猜你喜欢

热点阅读