我现在正在iOS开发中学习UITableView类,如何在UITableView中实现多个部分以获取详细信息?非常感谢!
答案 0 :(得分:0)
从UITableViewDataSource
的下方委托方法中返回正确的值。
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView;
答案 1 :(得分:0)
阅读this
是的,阅读所有其他部分以及UITableView上的一系列精彩教程
答案 2 :(得分:0)
为此,您可以使用tableview委托方法
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
NSInteger iSectionCount = 1;
return iSectionCount;
}
或只是
return 1;//For 1 section
在委托方法
中答案 3 :(得分:0)
要返回单个部分,请执行以下操作:
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}