1
我想包括png圖像在我的標籤文本之間。如何在objective-c中繼續此操作。如何在一個標籤的文本之間包含png圖像
我想包括png圖像在我的標籤文本之間。如何在objective-c中繼續此操作。如何在一個標籤的文本之間包含png圖像
這是以防有人的答案發現它有用----->
NSTextAttachment *attachment = [[NSTextAttachment alloc] init];
attachment.image = [UIImage imageNamed:@"Attach-52.png"];
NSAttributedString *attachmentString = [NSAttributedString attributedStringWithAttachment:attachment];
NSMutableAttributedString *myString= [[NSMutableAttributedString alloc] initWithString:@"My label text"];
[myString appendAttributedString:attachmentString];
myLabel.attributedText = myString;
同樣可以通過添加NSAttributedString png圖片。
試試這個:http://stackoverflow.com/questions/19318421/how-to-embed-small-icon-in-uilabel – sonique
thanx已解決我的問題:-) – raj