我想知道如果有更多例如,UITableViewController是否有可能自动打开now部分。表中有5行单元格?详细地说,我希望将项目1到项目5放置在第1节中,当用户添加更多项目时,新项目将自动放置在第2节中。如何才能做到这一点?

谢谢

最佳答案

使用numberOfRowsInSection

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
     return 5;
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    int sections = self.YOUR_DATASOURCE_ARRAY.count / 5;
    return sections;
}


有关更多信息,请参见UITableViewDataSourceProtocol参考:http://developer.apple.com/library/ios/#documentation/uikit/reference/UITableViewDataSource_Protocol/Reference/Reference.html

关于iphone - 如何设置UITableView Section以每隔5行单元格开始新的Section,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16064594/

10-12 04:41