我正在尝试创建一个UITableView,每个部分有一行,以提供消息聊天表的外观。如何实现这一目标?运用 [数组计数] 在下面两个委托方法的不同组合中,要么返回相同单元格的单独部分,要么返回每个部分中的多个行。
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return [array count];}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return 1;}
答案 0 :(得分:1)
看起来它应该做你想要的。然后,在cellForRowAtIndexPath:
中选择数组元素时,需要使用索引路径中的section属性而不是行。
答案 1 :(得分:0)
修复它:
[Array objectAtIndex:indexPath.section];
使用“section”而不是“row”。