可能重复:
iPhone UITableView 部分
我现在正在学习 iOS 开发的 UITableView 类,如何在 UITableView 中实现多个部分以获取详细信息?非常感谢!
可能重复:
iPhone UITableView 部分
我现在正在学习 iOS 开发的 UITableView 类,如何在 UITableView 中实现多个部分以获取详细信息?非常感谢!
从下面的委托方法返回正确的值UITableViewDataSource
。
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView;
读这个
是的,请阅读所有其他部分以获取有关 UITableView 的一组很棒的教程
为此,您可以使用 tableview 委托方法
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
NSInteger iSectionCount = 1;
return iSectionCount;
}
或者只是
return 1;//For 1 section
在委托方法内部
要返回单个部分,请执行以下操作:
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}