0

我正在尝试创建一个 UITableView,每个部分有一行,以呈现消息聊天表的外观。一个人将如何实现这一目标?使用 [array count] 在下面的两个委托方法中的不同组合中,要么返回同一单元格的单独部分,要么返回每个部分中的多行。

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return [array count];}    

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

2 回答 2

1

看起来它应该做你想做的事。然后,在cellForRowAtIndexPath:.

于 2012-07-27T00:13:15.643 回答
0

要解决这个问题:

[Array objectAtIndex:indexPath.section];

使用“节”而不是“行”。

于 2013-08-11T23:25:58.177 回答