Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
約 20 のテキスト フィールドを持つビューがあり、空の数ではなく、テキストを含むフィールドの数を確認したいと考えています。これを行う最善の方法は何ですか?
テキスト フィールドが 内にあると仮定すると、次のようになりますtheView。
theView
NSUInteger count = 0; for (UITextField *textField in theView.subviews) { if ([textField isKindOfClass: [UITextField class]]) { if ([textField.text length]) count++; } }