iPhone中如何检查单元格是否有子视图?
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法是给你的
barview
一个特殊的标签:然后检查
否则,你需要迭代
.subviews
数组并检查属性是否匹配,例如The simplest way is to give your
barview
a special tag:and then check with
Otherwise, you need to iterate through the
.subviews
array and check if the property matches, e.g.