iOS 11 与Xcode9总结

关于刘海打理这种事儿,美团点评的iOS工程师早就有经验了,不信你看!
Xcode9、iOS 11 和 iPhone X 适配问题集锦

iOS11 heightForHeaderInSection设置高度无效   
解决方法:
self.tableView.estimatedRowHeight = 0;
self.tableView.estimatedSectionFooterHeight = 0;
self.tableView.estimatedSectionHeaderHeight = 0;

你可能感兴趣的:(iOS 11 与Xcode9总结)