如何允许NSAttributedString文本输入UITextView?
我试图允许将不同样式的文本输入到UITextView中,有点像使用粗体或斜体等简单属性的文本编辑器。 我理解通过使用textView的attributedText
属性,我可以将属性应用于特定范围的文本。 这很好,但我希望能够在textView中键入属性文本,这将通过按钮切换(例如输入粗体文本)。
这是我到目前为止所想到的:
我使用了-(BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text
UITextView委托方法接受text
参数,并通过创建一个NSAttributedString来修改它的属性文本。 然后创建一个NSMutableAttributedString,它是textView
的attributedText的副本。 使用appendAttributedString
附加两个,然后将appendAttributedString
的attributedText
属性设置为生成的attributionString。
这是代码:
-(BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text { if (self.boldPressed) { UIFont *boldFont = [UIFont boldSystemFontOfSize:self.textView.font.pointSize]; NSDictionary *boldAttr = [NSDictionary dictionaryWithObject:boldFont forKey:NSFontAttributeName]; NSMutableAttributedString *attributedText = [[NSMutableAttributedString alloc]initWithString:text attributes:boldAttr]; NSMutableAttributedString *textViewText = [[NSMutableAttributedString alloc]initWithAttributedString:textView.attributedText]; [textViewText appendAttributedString:attributedText]; textView.attributedText = textViewText; return NO; } return YES; }
每次输入字符时都必须重置textViews attributionText似乎对于一个简单的操作有点多。 不仅如此,它还不能正常工作。 以下是启用粗体属性时的样子:
这有两个问题。 最明显的是每个新角色如何被放到一个新线上。 但同样奇怪的是插入点始终位于textview中文本的第一个索引处(仅当启用粗体时,粗体字符才会插入新行)。 因此,如果您使用粗体启用键入,然后关闭加粗,请在所有现有文本前键入简历。
我不确定为什么会发生这些错误。 我也不认为我的解决方案非常有效,但我想不出任何其他实现方法。
这就是setTypingAttributes:
的用途。 每当用户按下您的某个属性按钮时,将其设置为属性字典,新字符将获取所请求的属性。
如果您正在寻找示例,以下是示例代码
Swift 3.0
var attributes = textField.typingAttributes attributes["\(NSForegroundColorAttributeName)"] = UIColor.red textField.typingAttributes = attributes
Objective-C的
NSMutableDictionary* attributes = [textField.typingAttributes mutableCopy]; attributes[NSForegroundColorAttributeName] = [UIColor redColor]; textField.typingAttributes = attributes;
这个代码可以使用我想它可能会有所帮助
NSMutableAttributedString *string=[[NSMutableAttributedString alloc] initWithString:@"NEW ? String"]; [string addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NSMakeRange(0, 3)]; [string addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(3,5)]; self.text.attributedText=string; self.textViewss.attributedText=string;