xcode9升级后遇到的问题

UITableViewCell高度自适应

旧版本为了省事(无法自适应高度)

self.tableView.estimatedRowHeight = 60;

解决办法:

self.tableView.estimatedRowHeight = 60;
self.tableView.rowHeight = UITableViewAutomaticDimension;

UITableViewCell高度自适应

UIBarButtonItem按钮错位拉伸

解决办法:

[[UIBarButtonItem appearance] setBackButtonTitlePositionAdjustment:UIOffsetMake(-100, 0) forBarMetrics:UIBarMetricsDefault];

你可能感兴趣的:(xcode9升级后遇到的问题)