iOS我收到有关UITableViewDataSource实现不完整的警告

时间:2012-09-17 16:45:46

标签: xcode uitableview warnings

- (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];
}

我该如何解决?

1 个答案:

答案 0 :(得分:6)

您正在返回值,只需删除这些行:

#warning Potentially incomplete method implementation.

#warning Incomplete method implementation.
相关问题