1
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
#warning Potentially incomplete method implementation.
    // Return the number of sections.
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
#warning Incomplete method implementation.
    // Return the number of rows in the section.
    return [(NSSet *)[team valueForKey:@"players"] count];
}

どうすれば修正できますか?

4

1 に答える 1

6

値を返している場合は、次の行を削除してください:

#warning Potentially incomplete method implementation.

#warning Incomplete method implementation.
于 2012-09-17T17:15:16.570 に答える