我读过我们可以设置自动更正
textField.autocorrectionType = YES;
对于一个文本字段。但是如何为整个应用程序设置这个属性呢?
预先感谢!
我读过我们可以设置自动更正
textField.autocorrectionType = YES;
对于一个文本字段。但是如何为整个应用程序设置这个属性呢?
预先感谢!
简单地创建您自己的 Customclass 并在构造函数中设置属性。
@interface CustomTextField : UITextField
@end
@implementation CustomTextField
- (id)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
self.autocapitalizationType = UITextAutocorrectionTypeDefault;
}
return self;
}
@end
如果您创建一个新的文本字段,请使用您的自定义类创建对象:
CustomTextField *field = [[CustomTextField alloc] initWithFrame: ...];