我正在以编程方式创建 tableView 我想设置 tableView 样式组但是如何给 tableView alloc 只有框架我们如何设置这个值。
问问题
10929 次
3 回答
6
参考以下代码。
UITableView *tableView = [[UITableView alloc] initWithFrame:CGRectMake(0,0,your_width,your_height) style:UITableViewStyleGrouped];
于 2012-08-08T08:10:00.567 回答
2
您可以通过这种方式以编程方式添加它
tableView = [[[UITableView alloc] initWithFrame:CGRectMake(0,0,320,460) style:UITableViewStyleGrouped] autorelease];
tableView.dataSource = self;
tableView.delegate = self;
[self.view addSubview:tableView];
于 2012-08-08T08:11:02.413 回答
1
我不确定,我是否以正确的方式理解了你的问题,但你可以用这种方式构造一个 groupe tableView:
UITableView* tview = [[UITableView alloc] initWithFrame:yourFrame style:UITableViewStyleGrouped];
于 2012-08-08T08:11:05.130 回答