gpt4 book ai didi

iOS : Best practices for Fields Validation on User Interface

转载 作者:行者123 更新时间:2023-11-28 19:39:57 24 4
gpt4 key购买 nike

在我的应用程序中,我想验证字段中的用户输入。例如

If textfields is empty. Or email is in correct format

我不想在 ViewController 中添加验证逻辑,我也不想将 UIView 传递给 Validator

我有多个这样的屏幕。

有关验证屏幕的最佳方法的任何建议。

最佳答案

你可以做的是创建 UIViewcategory 类并编写实例方法,如

验证+UIView

+(BOOL)isEmpty:(NSString *)string{
// snippet to check empty validation and return value.
}


+(BOOL)emailValidation:(NSString *)string{
// snippet to check email validation and return value.

}

现在在您的 View 上使用这个实例方法。

if(![yourview isEmpty]){
// all good ...
}

关于iOS : Best practices for Fields Validation on User Interface,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34986696/

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