iOS
attribitedText в UILabel
Поиск…
Вступление
Текущий стилизованный текст, отображаемый меткой.
Вы можете добавить текст HTML
в UILabel
используя свойство attributedText или индивидуальный текст UILabel
с другим свойством
HTML-текст в UILabel
NSString * htmlString = @"<html><body> <b> Example bold text in HTML </b> </body></html>";
NSAttributedString * attrStr = [[NSAttributedString alloc] initWithData:[htmlString dataUsingEncoding:NSUnicodeStringEncoding] options:@{ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType } documentAttributes:nil error:nil];
UILabel * yourLabel = [[UILabel alloc] init];
yourLabel.attributedText = attrStr;
Установить другое свойство в текст в одном UILabel
Первым шагом, который необходимо выполнить, является создание объекта NSMutableAttributedString
. Причина, по которой мы создаем NSMutableAttributedString
вместо NSAttributedString
заключается в том, что она позволяет нам добавлять к ней строку.
NSString *fullStr = @"Hello World!";
NSMutableAttributedString *attString =[[NSMutableAttributedString alloc]initWithString:fullStr];
// Finding the range of text.
NSRange rangeHello = [fullStr rangeOfString:@"Hello"];
NSRange rangeWorld = [fullStr rangeOfString:@"World!"];
// Add font style for Hello
[attString addAttribute: NSFontAttributeName
value: [UIFont fontWithName:@"Copperplate" size:14]
range: rangeHello];
// Add text color for Hello
[attString addAttribute: NSForegroundColorAttributeName
value: [UIColor blueColor]
range: rangeHello];
// Add font style for World!
[attString addAttribute: NSFontAttributeName
value: [UIFont fontWithName:@"Chalkduster" size:20]
range: rangeWorld];
// Add text color for World!
[attString addAttribute: NSForegroundColorAttributeName
value: [UIColor colorWithRed:(66.0/255.0) green:(244.0/255.0) blue:(197.0/255.0) alpha:1]
range: rangeWorld];
// Set it to UILabel as attributedText
UILabel * yourLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 150, 200, 100)];
yourLabel.attributedText = attString;
[self.view addSubview:yourLabel];
Выход :
Modified text is an extract of the original Stack Overflow Documentation
Лицензировано согласно CC BY-SA 3.0
Не связан с Stack Overflow