iPhone中如何检查单元格是否有子视图?

发布于 2024-08-31 14:31:46 字数 190 浏览 7 评论 0原文

我是 iPhone 开发新手。我有一个名为 barView 的视图,它作为子视图添加到单元格中,我想检查这样的条件

if(cell has a subview barview)
{
do something.......
}else 
{
do something......
} 

我该如何检查?

I am new to iPhone development. I have a view called barView which is added as the subview to the cell, I want to check for the condition like this

if(cell has a subview barview)
{
do something.......
}else 
{
do something......
} 

How can I check like this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

傲性难收 2024-09-07 14:31:46

最简单的方法是给你的 barview 一个特殊的标签:

barview.tag = 123221;

然后检查

UIView* barview = [cell viewWithTag:123221];
if (barview != nil) {
  ...
}

否则,你需要迭代 .subviews 数组并检查属性是否匹配,例如

UIView* barview = nil;
for (UIView* subview in cell.subviews) {
   if ([subview isKindOfClass:[BarView class]]) {
      barview = subview;
      break;
   }
}
if (barview != nil) {
  ...
}

The simplest way is to give your barview a special tag:

barview.tag = 123221;

and then check with

UIView* barview = [cell viewWithTag:123221];
if (barview != nil) {
  ...
}

Otherwise, you need to iterate through the .subviews array and check if the property matches, e.g.

UIView* barview = nil;
for (UIView* subview in cell.subviews) {
   if ([subview isKindOfClass:[BarView class]]) {
      barview = subview;
      break;
   }
}
if (barview != nil) {
  ...
}
原来是傀儡 2024-09-07 14:31:46
if (barView.superview == cell)
{
   …
if (barView.superview == cell)
{
   …
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文