OStack程序员社区-中国程序员成长平台

标题: ios - 在 subview 中查找所有 UIButton [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 11:58
标题: ios - 在 subview 中查找所有 UIButton

我的 UIViewController View 中有一个 UIButton。我还有十个在主视图的 subview 中。我想找到所有这些按钮。到目前为止,我有:

-(void)findAllButtons{

    for(UIView *view in self.view.subviews) {
        if ([view isKindOfClass:[myButton class]]){
            NSLog(@"found a button!");         
        }
    }
}

它只找到一个按钮,而不是其他十个。这是为什么?它不应该迭代每一个 subview 然后找到它们吗?



Best Answer-推荐答案


for (UIView *subView in scroll.subviews) {
        if ([subView isKindOfClass:[UIButton class]]) {
            UIButton *btn = (UIButton*)subView;
            if (btn.tag == selectedButton.tag) {
                btn.layer.borderWidth = 1.0f;
                btn.layer.borderColor = [UIColor darkGrayColor].CGColor;
            }else{
                btn.layer.borderWidth = 1.0f;
                btn.layer.borderColor = [UIColor clearColor].CGColor;
            }
        }
    }

关于ios - 在 subview 中查找所有 UIButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33609443/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4