美文网首页
NSMutableAttributedString富文本

NSMutableAttributedString富文本

作者: 关羽007 | 来源:发表于2019-03-11 16:32 被阅读0次

    NSMutableAttributedString *string = [[NSMutableAttributedString alloc] init];

    [string appendAttributedString:[[NSMutableAttributedString alloc] initWithString:@"hello world"]];

            NSTextAttachment *attach = [[NSTextAttachment alloc] init];

            attach.image= [UIImageimageNamed:@"图片名字"];

            attach.bounds=CGRectMake(0,0,10,14);

            NSAttributedString *attachString = [NSAttributedString attributedStringWithAttachment:attach];

            [stringinsertAttributedString:attachStringatIndex:2]; //插入的下标

    相关文章

      网友评论

          本文标题:NSMutableAttributedString富文本

          本文链接:https://www.haomeiwen.com/subject/xipbpqtx.html