iOS 6 已更新为使用 UITextView 进行富文本编辑(UITextView 现在获得了属性文本属性——这是愚蠢的不可变的——)。这是在 NDA 下在 iOS 6 Apple 论坛上提出的一个问题,由于 iOS 6 现已公开,因此可以公开...
在 UITextView 中,我可以撤消任何字体更改,但不能撤消视图属性字符串副本中的替换。使用此代码时...
- (void) replace: (NSAttributedString*) old with: (NSAttributedString*) new
{
1. [[myView.undoManager prepareWithInvocationTarget:self] replace:new with:old];
2. old=new;
}
...撤消效果很好。
但是,如果我添加一行以使结果在我的视图中可见,则 undoManager 不会触发“replace:with:”方法,因为它应该......
- (void) replace: (NSAttributedString*) old with: (NSAttributedString*) new
{
1. [[myView.undoManager prepareWithInvocationTarget:self] replace:new with:old];
2. old=new;
3. myView.attributedText=[[NSAttributedString alloc] initWithAttributedString:old];
}
任何想法?对于我尝试在“2”行使用的 MutableAttributedString 的任何替换方法,无论是否使用范围,我都有同样的问题......