我有一个 UITextField 我想通过以下方式启用自动完成:
[self.textView setAutocorrectionType:UITextAutocorrectionTypeYes];
这正常工作,除非我给 UITextView 一个委托。设置委托后,自动完成将停止工作。委托只有以下方法:
- (void)textViewDidChange:(UITextView *)textView
{
self.textView.text = [self.textView.text stringByReplacingOccurrencesOfString:@"\n" withString:@""];
int left = LENGTH_MAX -[self.textView.text length];
self.characterCountLabel.text = [NSString stringWithFormat:@"%i",abs(left)];
}
有谁知道如何同时启用自动完成和委托集?
谢谢!
特里斯坦