0

我有大约 20 个文本字段的视图,我想检查有文本的字段数,而不是空的数字。最好的方法是什么?

4

1 回答 1

1

假设文本字段在里面theView

NSUInteger count = 0;
for (UITextField *textField in theView.subviews) {
    if ([textField isKindOfClass: [UITextField class]]) {
        if ([textField.text length])
            count++;
    }
}
于 2012-04-28T17:48:04.727 回答