标签: iphone objective-c ios cocoa-touch uitableview
让UITableViewController在旋转时刷新其tableview的最佳方法是什么?我很惊讶UITableViewController没有自动解决这个问题。
答案 0 :(得分:2)
-(void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation { [self.tableView reloadData]; }