如何通过我从IB知道的编码制作表格视图?

时间:2009-12-24 04:55:15

标签: iphone

我是iphone应用程序的新手,我想使用编码制作表格视图,所以请你给我一些建议吗?

1 个答案:

答案 0 :(得分:0)

使用initWithFrame:style:

例如:

CGRect tableViewFrame = CGRectMake(0, 20, 320, 460);
UITableView *myTableView = [[UITableView alloc] initWithFrame:tableViewFrame style:UITableViewStylePlain];
// now add the new view to a window or another view