禁用自动更正 UITextView
Disable autocorrect UITextView
有谁知道如何在 uitextview 中禁用自动更正编程?我有以下代码,但它不起作用。
- (void)_setUpTextView {
self.textView = [[UITextView alloc] initWithFrame:self.bounds];
self.textView.accessibilityLabel = @"CommentTextView";
self.textView.translatesAutoresizingMaskIntoConstraints = NO;
[self.textView setFont:[[AppearanceManager sharedManager] brightenFontWithSize:26.0f]];
[self.textView.layer setCornerRadius:5.0f];
self.textView.delegate = self;
self.textView.autocorrectionType = FALSE; // or use UITextAutocorrectionTypeNo
self.textView.autocapitalizationType = UITextAutocapitalizationTypeNone;
[self addSubview:self.textView];
}
哇,伙计,你评论了自己的答案。进行此更改:
self.textView.autocorrectionType = UITextAutocorrectionTypeNo;
你应该可以开始了。 autoCorrectionType
不接受布尔值作为参数。
有谁知道如何在 uitextview 中禁用自动更正编程?我有以下代码,但它不起作用。
- (void)_setUpTextView {
self.textView = [[UITextView alloc] initWithFrame:self.bounds];
self.textView.accessibilityLabel = @"CommentTextView";
self.textView.translatesAutoresizingMaskIntoConstraints = NO;
[self.textView setFont:[[AppearanceManager sharedManager] brightenFontWithSize:26.0f]];
[self.textView.layer setCornerRadius:5.0f];
self.textView.delegate = self;
self.textView.autocorrectionType = FALSE; // or use UITextAutocorrectionTypeNo
self.textView.autocapitalizationType = UITextAutocapitalizationTypeNone;
[self addSubview:self.textView];
}
哇,伙计,你评论了自己的答案。进行此更改:
self.textView.autocorrectionType = UITextAutocorrectionTypeNo;
你应该可以开始了。 autoCorrectionType
不接受布尔值作为参数。