您当前的位置: 首页 >  ui

培根芝士

暂无认证

  • 2浏览

    0关注

    446博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

UILabel中插入图片

培根芝士 发布时间:2015-06-16 15:09:26 ,浏览量:2

NSMutableAttributedString *string = [[NSMutableAttributedString alloc] initWithString:@"1234567" attributes:nil];

// 创建图片图片附件
NSTextAttachment *attach = [[NSTextAttachment alloc] init];
attach.image = image;
attach.bounds = CGRectMake(0, 0, image.size.width, image.size.height);

NSAttributedString *attachString = [NSAttributedString attributedStringWithAttachment:attach];

//将图片插入到合适的位置
[string insertAttributedString:attachString atIndex:index];

lbText.attributedText = string;

 

关注
打赏
1660824269
查看更多评论
立即登录/注册

微信扫码登录

0.0385s