-2

可能重复:
iPhone UITableView 部分

我现在正在学习 iOS 开发的 UITableView 类,如何在 UITableView 中实现多个部分以获取详细信息?非常感谢!

4

4 回答 4

0

从下面的委托方法返回正确的值UITableViewDataSource

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView;
于 2012-06-25T11:46:55.780 回答
0

这个

是的,请阅读所有其他部分以获取有关 UITableView 的一组很棒的教程

于 2012-06-25T11:47:47.687 回答
0

为此,您可以使用 tableview 委托方法

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView 
{
    NSInteger iSectionCount = 1;

    return iSectionCount;
}

或者只是

return 1;//For 1 section

在委托方法内部

于 2012-06-25T11:49:22.880 回答
0

要返回单个部分,请执行以下操作:

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
    {
        return 1;
    }
于 2012-06-25T11:51:06.363 回答