gpt4 book ai didi

ios - 如何从 View 中获取所有按钮?

转载 作者:行者123 更新时间:2023-11-28 18:04:36 25 4
gpt4 key购买 nike

我尝试从 UIView 获取所有按钮。我试过这段代码,但它不起作用。

for (UIView *subview in self.view.subviews)
{
if ([subview isKindOfClass:[UIButton class]]
{
NSLog(@"found a button!");
subview.layer.borderWidth = 1.0f;
subview.layer.borderColor = [[UIColor whiteColor] CGColor];
[subview.layer setCornerRadius: subview.frame.size.width/2.0f];
NSLog(@"button.tag = %ld", (long)subview.tag);
}
}

请帮忙。

最佳答案

使用此代码:

- (void)getAllButtonFromView:(UIView*)view {
for (UIView* subview in view.subviews) {

if (subview.subviews.count > 0) {
[self getAllButtonFromView:subview];
}
else if ([subview isKindOfClass:[UIButton class]]) {

NSLog(@"found a button!");
subview.layer.borderWidth = 1.0f;
subview.layer.borderColor = [[UIColor whiteColor] CGColor];
[subview.layer setCornerRadius: subview.frame.size.width/2.0f];
NSLog(@"button.tag = %ld", (long)subview.tag);
}
}
}

问题可能是您的按钮没有直接添加到 View 中,实际上它们是添加到 View 的 subview 中的。因此,只需检查 view.subviews 中的 subview 中的 View 是否具有包含 UIButton 的 subview 。

关于ios - 如何从 View 中获取所有按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43493830/

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