以编程方式设置 uiimage 的可见性

发布于 2024-10-03 12:24:49 字数 432 浏览 3 评论 0原文

我已将界面生成器中的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

|煩躁 2024-10-10 12:24:49

如果您想简单地根据该部分中的行数来执行此操作,您应该能够执行以下操作:

-(NSInteger)tableView: (UITableView *)tableView numberOfRowsInSection:(NSInteger) section {
      if(section == "whatever number you want to base the visibility off of")
            imageView.hidden = YES;
 }

其中 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:

-(NSInteger)tableView: (UITableView *)tableView numberOfRowsInSection:(NSInteger) section {
      if(section == "whatever number you want to base the visibility off of")
            imageView.hidden = YES;
 }

Where the imageView is the UIImageView that is on the page.

逆光飞翔i 2024-10-10 12:24:49

尝试使用

imageView.hidden = YES;

Try using

imageView.hidden = YES;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文