验证值是否合法 Validate the value +objectIsNilOrNull: 对象判空。(Validate the object is nil or null.)
1 2 3 4 5 6 7 8 9 10 NSObject *object; LOG_FORMAT(@"1: %d" , [EFUtils objectIsNilOrNull:object]); object = [NSNull null]; LOG_FORMAT(@"2: %d" , [EFUtils objectIsNilOrNull:object]); object = [NSObject alloc]; LOG_FORMAT(@"3: %d" , [EFUtils objectIsNilOrNull:object]); if (![EFUtils objectIsNilOrNull:object]) { }
+stringIsNilOrNullOrEmpty: 字符串判空。(Validate the string is nil or null or empty.)
1 2 3 4 5 6 7 8 9 10 NSString *string; LOG_FORMAT(@"1: %d" , [EFUtils stringIsNilOrNullOrEmpty:string]); string = (NSString *)[NSNull null]; LOG_FORMAT(@"2: %d" , [EFUtils stringIsNilOrNullOrEmpty:string]); string = @"" ; LOG_FORMAT(@"3: %d" , [EFUtils stringIsNilOrNullOrEmpty:string]); if (![EFUtils stringIsNilOrNullOrEmpty:string]) { }
+validateString:byRegExp: 使用正则表达式验证字符串值。(Validate the string by a regular expression.)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 + (BOOL )checkUserName:(NSString *_Nonnull)userName { return [EFUtils validateString:userName byRegExp:@"^1\\d{10}$" ]; } LOG_FORMAT(@"1: %d" , [AppUtils checkUserName:@"123456" ]); LOG_FORMAT(@"2: %d" , [AppUtils checkUserName:@"01234567890" ]); LOG_FORMAT(@"3: %d" , [AppUtils checkUserName:@"13678234511" ]); if (![AppUtils checkUserName:userName]) { LOG_FORMAT(@"用户名是一个手机号码,请检查" ); return ; }
+objectValueIsNilOrNull:withKey: 字典中指定键值判空。(Validate the key value in a dictionary is nil or null.)
1 2 3 4 5 6 7 8 9 10 11 NSDictionary *dictionary = @{@"ID" : @59 , @"name" : @"James" , @"age" : [NSNull null], @"offline" : @true}; LOG_FORMAT(@"1: %d" , [EFUtils objectValueIsNilOrNull:dictionary withKey:@"name" ]); LOG_FORMAT(@"2: %d" , [EFUtils objectValueIsNilOrNull:dictionary withKey:@"age" ]); LOG_FORMAT(@"3: %d" , [EFUtils objectValueIsNilOrNull:dictionary withKey:@"nick" ]); if (![EFUtils objectValueIsNilOrNull:dictionary withKey:@"nick" ]) { }
+objectValueIsEqualTo:dictionary:withKey: 字典中指定键值是否等于指定数值。(Validate the key value in a dictionary is equal to another integer value in a NSNumber or NSString object or not.)
1 2 3 4 5 6 7 8 9 10 11 12 NSDictionary *dictionary = @{@"status" : @200 , @"ID" : @59 , @"name" : @"James" , @"age" : [NSNull null], @"offline" : @true}; LOG_FORMAT(@"1: %d" , [EFUtils objectValueIsEqualTo:@"00000059" dictionary:dictionary withKey:@"ID" ]); LOG_FORMAT(@"2: %d" , [EFUtils objectValueIsEqualTo:@YES dictionary:dictionary withKey:@"offline" ]); LOG_FORMAT(@"3: %d" , [EFUtils objectValueIsEqualTo:@1 dictionary:dictionary withKey:@"offline" ]); if ([EFUtils objectValueIsEqualTo:@200 dictionary:dictionary withKey:@"status" ]) { }
+validateDictionary: 字典中所有的值都不为空,注意之前 +validDictionary: 返回的值已发生反转。(Validate all values in a dictionary is all not empty, note that the returned value from +validDictionary: has been reversed.)
1 2 3 4 5 6 7 8 9 NSDictionary *dictionary = @{@"ID" : @59 , @"name" : @"James" , @"age" : [NSNull null], @"offline" : @true}; LOG_FORMAT(@"%d" , [EFUtils validateDictionary:dictionary]); if ([EFUtils validateDictionary:dictionary]) { }
相关
更新内容 相关链接调整。