UITextFiled 的运行时属性
Posted
技术标签:
【中文标题】UITextFiled 的运行时属性【英文标题】:Runtime Attribute of UITextFiled 【发布时间】:2015-03-25 05:38:13 【问题描述】:我的应用程序中有很多 UITextField。
我不想让用户在这些文本字段中输入特殊字符。
我知道,我可以使用 UITextFiled 的 shouldChangeCharactersInRange 委托方法并对其进行验证,但是这种方法适用于 5-8 UITextFiled 而不是 15-20。
我想使用 RuntimeAttributes 和 UICategory 验证那些 (15-20) UITextFileds,如下链接:-
http://johannesluderschmidt.de/category-for-setting-maximum-length-of-text-in-uitextfields-on-ios-using-objective-c/3209/
http://spin.atomicobject.com/2014/05/30/xcode-runtime-attributes/
我尝试创建 UITextFiled 的 UICategory 如下:-
UITextField+RunTimeExtension.h
@interface UITextField (RunTimeExtension)
@property(nonatomic,assign) BOOL *isAllowedSpecialCharacters;
@end
UITextField+RunTimeExtension.m
-(void)setIsAllowedSpecialCharacters:(BOOL *)isAllowedSpecialCharacters
-(BOOL)isIsAllowedSpecialCharacters
if(self.isAllowedSpecialCharacters)
NSCharacterSet *characterSet = [[NSCharacterSet alphanumericCharacterSet] invertedSet];
NSString *filtered = [[self.text componentsSeparatedByCharactersInSet:characterSet] componentsJoinedByString:@""];
return [self.text isEqualToString:filtered] || [self.text isEqualToString:@" "];
else
return NO;
并在 RuntimeAttribute 中添加此属性,如下图所示:
但是不管这个属性是否被选中都不起作用。
【问题讨论】:
你检查我的答案了吗? 【参考方案1】:您的代码中有很多错误。请参阅我的答案以进行更正。
UITextField+SpecialCharacters.h
#import <UIKit/UIKit.h>
@interface UITextField (SpecialCharacters)
@property(nonatomic,assign) NSNumber *allowSpecialCharacters;
//here you were using BOOL *
@end
UITextField+SpecialCharacters.m
#import "UITextField+SpecialCharacters.h"
#import <objc/runtime.h>
@implementation UITextField (SpecialCharacters)
static void *specialCharKey;
-(void) setAllowSpecialCharacters:(NSNumber *)allowSpecialCharacters
objc_setAssociatedObject(self, &specialCharKey, allowSpecialCharacters, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
-(NSNumber *) allowSpecialCharacters
return objc_getAssociatedObject(self, &specialCharKey);
@end
始终按照标准设置 getter 和 setter 的名称。
在您的 ViewController 中,为文本字段设置委托,并根据您的要求实现以下委托方法:
-(BOOL) textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
if([textField.allowSpecialCharacters boolValue])
NSCharacterSet *characterSet = [[NSCharacterSet alphanumericCharacterSet] invertedSet];
NSString *filtered = [[textField.text componentsSeparatedByCharactersInSet:characterSet] componentsJoinedByString:@""];
return [textField.text isEqualToString:filtered] || [textField.text isEqualToString:@" "];
else
return NO;
在故事板/笔尖中,您应该像在快照中一样设置运行时属性。您可以根据需要将值设置为 1 或 0。
这在我身边运行良好。希望它能解决你的问题。谢谢。
【讨论】:
如果我在类别中使用 shouldChangeCharactersInRange 怎么办? 它是一个委托方法,而不是文本字段继承的方法。 好的.. 谢谢@iAnum【参考方案2】:为什么不创建自定义文本字段 MyCustomTextField extends UITextField
并在需要时使用此自定义文本字段?
如果您需要更多详细信息,请告诉我。
【讨论】:
不,我不想使用自定义。我只想使用 RuntimeAttribute。【参考方案3】:您可以使用以下自定义类来满足您的所有要求。它使用正则表达式来验证textField
,您可以根据您的正则表达式编辑它们以处理shouldChangeCharactersInRange
。
https://github.com/tomkowz/TSValidatedTextField
【讨论】:
以上是关于UITextFiled 的运行时属性的主要内容,如果未能解决你的问题,请参考以下文章
UITextfiled的leftView属性在Objective-C中不起作用[重复]
当cell中有UItextfiled或者UITextVIew时,弹出键盘把tableview往上,但是有的cell没有移动