gpt4 book ai didi

ios - 如何验证 ios 中的多个文本字段

转载 作者:行者123 更新时间:2023-11-28 22:09:35 24 4
gpt4 key购买 nike

我正在处理包含多个 TextField 的应用程序,是否有任何方法可以一次验证所有字段以在提交之前检查它们是否全部不为空。因为我能够逐一验证。

最佳答案

NSArray *viewsToRemove = [self.view subviews];
for (UIView *v in viewsToRemove)
{
if([v isKindOfClass:[UITextField class]])
{
UITextField *txt=(UITextField *)v;
//check for spaces
NSString *str=[txt.text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet
if([str length]<=0)
{
//raise the error
//To raise the proper error, check for the tag by assigning tag to each textfield in xib.
}
}
}

确保逻辑不会减慢您的应用程序。否则要一一验证...

关于ios - 如何验证 ios 中的多个文本字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23236281/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com