iOS
यूआईबेल में आरटेटटेक्स्ट
खोज…
परिचय
वर्तमान स्टाइल पाठ जो लेबल द्वारा प्रदर्शित किया जाता है।
आप UILabel
में HTML
टेक्स्ट जोड़ सकते हैं जो एट्रिब्यूटेड टेक्स्ट प्रॉपर्टी या विभिन्न प्रॉपर्टी के साथ कस्टमाइज़्ड सिंगल UILabel
टेक्स्ट का उपयोग कर सकते हैं
UILabel में HTML टेक्स्ट
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
ऑब्जेक्ट बनाने के लिए आपको पहले चरण की आवश्यकता है। NSAttributedString
बजाय NSMutableAttributedString
बनाने का कारण यह है कि यह हमें स्ट्रिंग को जोड़ने में सक्षम बनाता है।
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