我有大约20个文本字段的视图,我想检查有文本的字段数,而不是空的数字。最好的方法是什么?
答案 0 :(得分:1)
假设文本字段位于theView
内:
NSUInteger count = 0;
for (UITextField *textField in theView.subviews) {
if ([textField isKindOfClass: [UITextField class]]) {
if ([textField.text length])
count++;
}
}