我宣布一个ib outlet作为uiimageview并尝试了这段代码:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
id <NSFetchedResultsSectionInfo> sectionInfo = [[self.fetchedResultsController sections] objectAtIndex:section];
return [sectionInfo numberOfObjects];
if (section > 1){
mySpeech.hidden = YES;
}
}
mySpeech是uiimageview ...
但它不起作用!有什么想法吗?
答案 0 :(得分:1)
你需要将return
语句放在最后,因为它之后什么都不会被执行。