UITableView坑
带有UITableView的界面如果到遇到以下警告
Warning once only: Detected a case where constraints ambiguously suggest a height of zero for a tableview cell's content view. We're considering the collapse unintentional and using standard height instead.
添加以下代码可解决
self.tableView.rowHeight = 44.0f;