以编程方式设置 uiimage 的可见性
我已将界面生成器中的 UIImage 拖到视图上,并从下拉列表中选择了我的 PNG,效果很好,但如果我想根据此表代码中的行数更改 uiimage 的可见性:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
id <NSFetchedResultsSectionInfo> sectionInfo = [[self.fetchedResultsController sections] objectAtIndex:section];
return [sectionInfo numberOfObjects];
}
我是否必须声明uiimage 作为出口,如果表中的行数大于 1(即存在行),我将如何在上面的代码中编码可见性
I've dragged a UIImage in interface builder onto the view and selected my PNG from the dropdown, that works great but if I want to change the visibility of the uiimage according to the number of rows in this table code:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
id <NSFetchedResultsSectionInfo> sectionInfo = [[self.fetchedResultsController sections] objectAtIndex:section];
return [sectionInfo numberOfObjects];
}
Would I have to declare the uiimage as an outlet and how would I code the visibility in the above code if the number of rows in the table was more that 1 (ie. there were rows present)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想简单地根据该部分中的行数来执行此操作,您应该能够执行以下操作:
其中 imageView 是页面上的 UIImageView。
If you want to do it simply based on the number of rows in the section you should just be able to do something like this:
Where the imageView is the UIImageView that is on the page.
尝试使用
Try using