很多時(shí)候都想在UILabel實(shí)現(xiàn)圖片文字共存的效果,用NSAttributedString與NSTextAttachment實(shí)現(xiàn)大家想要的效果。
代碼如下:
UIlabel * lab = [[UIlabel alloc] init];
NSTextAttachment *attach = [[NSTextAttachment alloc] init];
attach.image = [UIImage imageNamed:@"ic_home_bluelion"];
NSAttributedString *collegeStr = [NSAttributedString attributedStringWithAttachment:attach];
lab.attributedText = collegeStr;
如下圖紅線框標(biāo)注所示效果:ios_text.png
