圖文混排效果

如果要做圖文混排可以利用NSMutableAttributedString

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

attch.image = [UIImage imageNamed:@""];
NSAttributedString *mstr = [NSAttributedString attributedStringWithAttachment:attch];

[attrStr appendAttributedString:mstr];

比如你放在一個label上那麼就設置label.attributedText = attrStr

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章