iOS为什么设置NSBaselineOffsetAttributeName时NSTextAttachment会消失?

dri*_*ing 9 iphone ios

之前

我想将NSTextAttachment与文本的中心对齐,因此我设置NSBaselineOffsetAttributeName来更改NSTextAttachment的基线.

NSMutableAttributedString *attrString = [[NSMutableAttributedString alloc] initWithString:@"" attributes:@{NSFontAttributeName: [UIFont fontWithName:@"STHeitiSC-Light" size:17]}];
NSTextAttachment *attachment = [[NSTextAttachment alloc] init];
attachment.image = [UIImage imageNamed:@"micon"];        
NSMutableAttributedString *ats = [[NSAttributedString attributedStringWithAttachment:attachment] mutableCopy];
[ats addAttributes:@{NSBaselineOffsetAttributeName:@(-5),NSFontAttributeName: [UIFont fontWithName:@"STHeitiSC-Light" size:17]} range:(NSRange){0,ats.length}];
[attrString appendAttributedString:s];
Run Code Online (Sandbox Code Playgroud)

然后我计算UILabel的大小并设置attributedText.

CGRect textFrame = [attrString boundingRectWithSize:size options:NSStringDrawingUsesLineFragmentOrigin|NSStringDrawingUsesFontLeading context:nil];
UILabel *label = [[UILabel alloc] initWithFrame:textFrame];
label.lineBreakMode = NSLineBreakByCharWrapping;
label.numberOfLines = 0;
label.attributedText = attributed;
label.backgroundColor = [UIColor clearColor];
Run Code Online (Sandbox Code Playgroud)

最后,最后一张图片消失了.

后

任何人都可以解释为什么会发生这种情况以及如何解决它.

dri*_*ing 6

我最后通过添加另一个属性NSParagraphStyleAttributeName来解决它

    NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
    paragraphStyle.minimumLineHeight = lineheight; //line height equals to image height
    [attributes setValue:paragraphStyle forKey:NSParagraphStyleAttributeName];
Run Code Online (Sandbox Code Playgroud)

不要改变图像的偏移量,只需设置文本的偏移量.