申し訳ありませんが、これがすでに議論されている場合、私は自分が何を求めているのかを見つけることができませんでした。
2つの配列を含む.plistファイルがあります。これらの配列は、テーブルビューでセクションを分割したい方法で正確に分割されています。
配列をテーブルビューに取り込むのに問題はありませんが、最初のセクションに1つの配列が必要で、2番目のセクションに2番目の配列が必要であることをアプリに伝える方法について頭を悩ませることはできません。
配列をテーブルに入れる現時点での私のコードは次のとおりです(そしてそれは正常に機能します):
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//Create string with reference to the prototype cell created in storyboard
static NSString *CellIdentifier = @"PlayerNameCell";
//Create table view cell using the correct cell type
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
//Create a dictionary containing the player names
NSDictionary *players = (NSDictionary*) [[self Squad] objectAtIndex:[indexPath row]];
//Set the cell text to the player name
[[cell textLabel] setText:(NSString*)[players valueForKey:@"PlayerFullName"]];
//Set the cell detail text to the squad number
[[cell detailTextLabel] setText:(NSString*)[players valueForKey:@"PlayerSquadNumber"]];
return cell;
}
しかし、今は別のテーブルビューがあり、それぞれが異なる配列から読み取る2つのセクションが必要になります。
どんな助けでも大歓迎です。
どうもありがとう