使用 UITextView 时,我尝试将自定义属性添加到属性字符串。但是,在分配给 UITextView 的属性文本后,所有自定义键都会丢失。像这样:
NSMutableAttributedString *lString = [[ NSMutableAttributedString alloc ] initWithString: @"astring"
attributes: @{ @"customkey": @"customvalue" }];
NSLog(@"string: %@", lString); // shows customkey present
textView.attributedText = lString;
NSLog(@"result: %@", self.textView.attributedText); // shows customkey missing
这应该工作吗?