如果uiimageview上的声明不起作用

时间:2010-11-20 19:09:45

标签: objective-c uitableview uiimageview if-statement

我宣布一个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 ...

但它不起作用!有什么想法吗?

1 个答案:

答案 0 :(得分:1)

你需要将return语句放在最后,因为它之后什么都不会被执行。