- (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];
}
我该如何解决?
答案 0 :(得分:6)
您正在返回值,只需删除这些行:
#warning Potentially incomplete method implementation.
#warning Incomplete method implementation.