获取带有文本的文本字段数

时间:2012-04-28 17:36:54

标签: iphone objective-c xcode ipad uitextfield

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

1 个答案:

答案 0 :(得分:1)

假设文本字段位于theView内:

NSUInteger count = 0;
for (UITextField *textField in theView.subviews) {
    if ([textField isKindOfClass: [UITextField class]]) {
        if ([textField.text length])
            count++;
    }
}