NSTextAttachment
是否可以为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);
}];
这是不可能的NSTextAttachment
,你会建议做什么来达到类似的效果?