我需要在文本 View 中使用两种不同的字体,因此我在textViewDidChange中设置了属性文本。但是对于日语键盘,将重复输入输入字符。

它适用于英文键盘。
当您使用普通文本而不是attributedText时,它也适用于日语键盘。

我的代码:

- (void)viewDidLoad {
    [super viewDidLoad];

    UITextView *textView = [[UITextView alloc] initWithFrame:self.view.frame];
    textView.delegate = self;
    [self.view addSubview:textView];
}

- (void)textViewDidChange:(UITextView *)textView
{
    NSLog(@"TOTAL: %@", textView.text);

    textView.attributedText = [[NSMutableAttributedString alloc] initWithString: textView.text];
}

- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text
{
    NSLog(@"ADDED: %@", text);

    return YES;
}

输出:
2015-07-15 13:51:10.156 japKeyTest[32163:5765000] ADDED: a
2015-07-15 13:51:10.167 japKeyTest[32163:5765000] TOTAL: あ
2015-07-15 13:51:11.376 japKeyTest[32163:5765000] ADDED: a
2015-07-15 13:51:11.378 japKeyTest[32163:5765000] TOTAL: あああ
2015-07-15 13:51:12.054 japKeyTest[32163:5765000] ADDED: a
2015-07-15 13:51:12.055 japKeyTest[32163:5765000] TOTAL: ああああああ

预期的:
2015-07-15 13:51:10.156 japKeyTest[32163:5765000] ADDED: a
2015-07-15 13:51:10.167 japKeyTest[32163:5765000] TOTAL: あ
2015-07-15 13:51:11.376 japKeyTest[32163:5765000] ADDED: a
2015-07-15 13:51:11.378 japKeyTest[32163:5765000] TOTAL: ああ
2015-07-15 13:51:12.054 japKeyTest[32163:5765000] ADDED: a
2015-07-15 13:51:12.055 japKeyTest[32163:5765000] TOTAL: あああ

任何想法如何使用日语键盘输入属性文本并获得正常结果? (无多余字符)

最佳答案

This answer帮助我弄清楚了:
检查UITextView上的markedTextRange是否为nil。这意味着用户正在输入多级字符。推迟编辑attributedText,直到完成。

10-06 13:09
查看更多