图文混排之NSAttributedString

来源:互联网 发布:酷骑单车网络连接失败 编辑:程序博客网 时间:2024/05/18 03:50
-(NSAttributedString *)imagesWithimgName:(NSString* )imgName offsetY:(CGFloat)offsetY{    NSTextAttachment * textAttachment = [[NSTextAttachment alloc]init];    UIImage * smileImage = [ UIImage imageNamed:imgName];    textAttachment.image = smileImage ;    textAttachment.bounds = CGRectMake(0, offsetY, smileImage.size.width, smileImage.size.height);    return [NSAttributedString attributedStringWithAttachment:textAttachment];}-(void)appendImgStr:(NSString* )imgName offsetY:(CGFloat)offsetY{    [self appendAttributedString:[self imagesWithimgName:imgName offsetY:offsetY]];}

0 0
原创粉丝点击