首页 > 学院 > 开发设计 > 正文

遍历子视图中某个类型控件方法

2019-11-14 20:25:00
字体:
来源:转载
供稿:网友
    NSMutableArray *textFieldArray = [NSMutableArray arrayWithCapacity:5];        for (UIView *textField in self.view.subviews) {        if ([textField isKindOfClass:[UITextField class]]) {            [textFieldArray addObject:textField];        }    }

用isKindOfClass判断指定类型


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表