gpt4 book ai didi

ios - 无法获取 UIView 的 subview

转载 作者:行者123 更新时间:2023-11-29 01:05:52 25 4
gpt4 key购买 nike

我在 vwProgress2 中添加了 3 个 ImageView ,标签分别为 100、101、102。但是,当我打印它的 subview 时,我的计数为 0..

enter image description here

NSLog(@"%d",[[vwProgress2 subviews]count]);

for (UIView *subView in vwProgress2.subviews) {
if ([subView isKindOfClass:[UIImageView class]] && subView.tag >= 100) {
[(UIImageView *)subView setImage:nil];
NSLog(@"Hello");
}
}

可能是什么原因?我已经设置了正确的 IBOutlet

最佳答案

使用 viewWithTag: 方法从标签获取 ImageView ,试试这个代码,

UIImageView *queProgress = (UIImageView *)[self. vwProgress2 viewWithTag: 100];
UIImageView *queTrue = (UIImageView *)[self. vwProgress2 viewWithTag: 101];
UIImageView *queFalse = (UIImageView *)[self. vwProgress2 viewWithTag: 102];

谢谢

关于ios - 无法获取 UIView 的 subview ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36372414/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com