Center NSTextAttachment image next to single line UILabel

后端 未结 10 1123
太阳男子
太阳男子 2020-11-30 16:51

I\'d like to append an NSTextAttachment image to my attributed string and have it centered vertically.

I\'ve used the following code to create my string

10条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-30 17:27

    What about:

    CGFloat offsetY = -10.0;
    
    NSTextAttachment *attachment = [NSTextAttachment new];
    attachment.image = image;
    attachment.bounds = CGRectMake(0.0, 
                                   offsetY, 
                                   attachment.image.size.width, 
                                   attachment.image.size.height);
    

    No subclassing needed

提交回复
热议问题