1.mac更新系统后Git不能用,提示missing xcrun at
终端执行:xcode-select --install
2.创建pod文件
pod init
3.setStatusBarStyle无效问题
在info.plist设置View controller-based status bar appearance项设为No。
4.iphoneX未满屏
设置启动图片
5.pch文件需要在build settings里面设置Prefix Header才会生效
6.定时器NSTimer需要手动销毁
7.UITableView滚动到指定位置闪屏
self.tableView.estimatedRowHeight = 0;
网友评论