我知道这是一个简单的问题,但我无法将我的细胞分组到我的桌面视图中。我已将选项更改为“Grouped”,但它不起作用。
问题出在哪里?
它链接到File的所有者,具有属性,具有IBOutlet,并且它看起来是正常的TableView。
提前致谢。
答案 0 :(得分:1)
首先,您使用基于导航的应用程序并打开RootViewController.xib并转到属性并在TableView属性下选择样式组,然后在该RootViewController.m文件之后 并运行您的应用程序
// Customize the number of sections in the table view.
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 5;
}
// Customize the number of rows in the table view.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 10;
}
-(void)setListTableView
{
mytableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 59, 319, 358) style:UITableViewStyleGrouped];
mytableView.separatorStyle = UITableViewCellSeparatorStyleSingleLineEtched;
mytableView.backgroundColor = [UIColor clearColor];
mytableView.opaque = NO;
mytableView.delegate = self;
mytableView.dataSource = self;
mytableView.scrollEnabled = YES;
mytableView.scrollsToTop = YES;
[self.view addSubview:mytableView];
}