投稿のようなアプリを作成したいので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.
}