抱歉,如果这已经讨论过了,我找不到我想要的东西..
我有一个 .plist 文件,其中包含 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 个部分,每个部分从不同的数组读取。
任何帮助将不胜感激。
非常感谢