动画 NSTextAttachment

hpi*_*que 5 core-animation uitextview nsattributedstring nstextattachment ios

是否可以在 aNSTextAttachment中设置 a 动画UITextView

我尝试修改它的边界,但它似乎没有产生任何效果。

NSAttributedString *attributedText = self.textView.attributedText;
NSTextAttachment *textAttachment = [attributedText attribute:NSAttachmentAttributeName atIndex:index effectiveRange:nil];
textAttachment.bounds = CGRectMake(0, 0, 1, 1);
[UIView animateWithDuration:1 animations:^{
    textAttachment.bounds = CGRectMake(50, 50, 200, 200);
}];
Run Code Online (Sandbox Code Playgroud)

这是不可能的NSTextAttachment,你建议怎么做才能达到类似的效果?