如何设置从UITableViewController继承的表视图的大小 像这样
@interface myTableViewController : UITableViewController {
............
............
}
答案 0 :(得分:1)
如果您是以编程方式而不是从笔尖执行此操作,则可以使用.m文件中的类似内容更改表的大小:
CGRect tableFrame = self.tableView.frame;
tableFrame.size = CGSizeMake(320, 480); //(x, y) x = width and y = height
self.tableView.frame = tableFrame;
如果您使用Interface Builder进行操作,只需在大小选项卡下更改检查器中的大小。
答案 1 :(得分:0)
继承几乎与你想要的东西无关。您可以在检查器(command + i)Size选项卡中直接在xib中设置表视图的大小。或者您可以以编程方式设置大小:
self.tableView.frame = CGRectMake(0, 0, 200, 200);