我想制作一个像帖子这样的应用程序,所以我希望UITableView
在标题中应该已经在帖子旁边给出了帖子名称,当点击它应该打开弹出窗口以输入评论时应该有按钮评论,并且该评论存储在该帖子标题的数组中我有标题的帖子数组,但是如何为每个部分提供行,它们将作为用户评论给出这里是我的代码
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
NSString *result = [postsArray objectAtIndex:section];
return result;
}
// 自定义表格视图中的行数。
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [headerArray count];// here will be array for each section of header post entered any idea how to use this.
}