0

更一般地说,您如何在 UIViewDelegate 中搜索 UI 元素?

现在,我想计算当前视图中 UITextField 的数量,以在其他视图中填充正确数量的 UILabel。

4

2 回答 2

0

如果所有文本字段都是当前视图的直接子视图,只需循环当前视图的子视图,并测试它们是否是 UITextField 类。如果它们不是所有直接子视图,那么您需要深入了解所有顶级子视图以查看它们中的任何一个是否还包含 UITextFields。

于 2012-09-09T23:19:09.640 回答
0
- (NSInteger)textFieldCountInsideView:(UIView *)parentView
{
    NSInteger count = 0;
    for (UIView *subview in parentView.subviews) {
        if ([subview isKindOfClass:[UITextField class]])
            count = count + [self textFieldCountInsideView:subview];
    }
    return count;
}

在你的 UIViewController 的某个地方:

NSInteger count = [self textFieldCountInsideView:self.view];
于 2012-09-09T23:47:15.577 回答