我有 UITableView 具有动态单元格高度,我需要在弹出窗口中显示此 UITableView ,所以我需要设置 UITableView 的内容大小.
现在不是硬编码,所以在 viewDidLoad 我有:
self.contentSizeForViewInPopover = CGSizeMake(320, 310);
但是我需要根据 table 的高度来改变弹出框的高度。有可能实现这一点吗?有什么帮助吗?
Best Answer-推荐答案 strong>
在 popOverViewConotroller.m
-(void) viewDidAppearBOOL)animated{
self.preferredContentSize = myTableView.contentSize;
}
关于ios - UITableView 在 UIPopoverController 中具有动态高度,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/20464487/
|