uiimageview 上的 if 语句不起作用
我将 ib 出口声明为 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...
但它不起作用!有什么想法吗?
I declared an ib outlet as an uiimageview and attempted this code:
- (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 is the uiimageview...
But it isn't working! Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将 return 语句放在最后,因为它后面的任何内容都不会被执行。
You need to put that
return
statement last, because nothing after it will ever be executed.