अपडेट करें
स्विफ्ट में हमें iOS5 पुराने सामान के साथ सौदा नहीं करना है इसके अलावा सिंटैक्स कम है इसलिए सब कुछ वास्तव में सरल हो जाता है:
स्विफ्ट 5
func attributedString(from string: String, nonBoldRange: NSRange?) -> NSAttributedString {
let fontSize = UIFont.systemFontSize
let attrs = [
NSAttributedString.Key.font: UIFont.boldSystemFont(ofSize: fontSize),
NSAttributedString.Key.foregroundColor: UIColor.black
]
let nonBoldAttribute = [
NSAttributedString.Key.font: UIFont.systemFont(ofSize: fontSize),
]
let attrStr = NSMutableAttributedString(string: string, attributes: attrs)
if let range = nonBoldRange {
attrStr.setAttributes(nonBoldAttribute, range: range)
}
return attrStr
}
स्विफ्ट 3
func attributedString(from string: String, nonBoldRange: NSRange?) -> NSAttributedString {
let fontSize = UIFont.systemFontSize
let attrs = [
NSFontAttributeName: UIFont.boldSystemFont(ofSize: fontSize),
NSForegroundColorAttributeName: UIColor.black
]
let nonBoldAttribute = [
NSFontAttributeName: UIFont.systemFont(ofSize: fontSize),
]
let attrStr = NSMutableAttributedString(string: string, attributes: attrs)
if let range = nonBoldRange {
attrStr.setAttributes(nonBoldAttribute, range: range)
}
return attrStr
}
उपयोग:
let targetString = "Updated 2012/10/14 21:59 PM"
let range = NSMakeRange(7, 12)
let label = UILabel(frame: CGRect(x:0, y:0, width:350, height:44))
label.backgroundColor = UIColor.white
label.attributedText = attributedString(from: targetString, nonBoldRange: range)
label.sizeToFit()
बोनस: अंतर्राष्ट्रीयकरण
कुछ लोगों ने अंतर्राष्ट्रीयकरण के बारे में टिप्पणी की। मुझे व्यक्तिगत रूप से लगता है कि यह इस प्रश्न के दायरे से बाहर है लेकिन निर्देशात्मक उद्देश्यों के लिए यह है कि मैं इसे कैसे करूंगा
// Date we want to show
let date = Date()
// Create the string.
// I don't set the locale because the default locale of the formatter is `NSLocale.current` so it's good for internationalisation :p
let formatter = DateFormatter()
formatter.dateStyle = .medium
formatter.timeStyle = .short
let targetString = String(format: NSLocalizedString("Update %@", comment: "Updated string format"),
formatter.string(from: date))
// Find the range of the non-bold part
formatter.timeStyle = .none
let nonBoldRange = targetString.range(of: formatter.string(from: date))
// Convert Range<Int> into NSRange
let nonBoldNSRange: NSRange? = nonBoldRange == nil ?
nil :
NSMakeRange(targetString.distance(from: targetString.startIndex, to: nonBoldRange!.lowerBound),
targetString.distance(from: nonBoldRange!.lowerBound, to: nonBoldRange!.upperBound))
// Now just build the attributed string as before :)
label.attributedText = attributedString(from: targetString,
nonBoldRange: nonBoldNSRange)
परिणाम (अंग्रेजी और जापानी Localizable.strings मानकर उपलब्ध हैं)
IOS6 के लिए पिछला उत्तर और बाद में (उद्देश्य-सी अभी भी काम करता है):
IOS6 में UILabel
, UIButton
, UITextView
, UITextField
, समर्थन तार जिसका अर्थ है हम बनाने के लिए की जरूरत नहीं है जिम्मेदार ठहराया CATextLayer
जिम्मेदार ठहराया स्ट्रिंग्स के लिए हमारे प्राप्तकर्ता के रूप में है। इसके अलावा जिम्मेदार स्ट्रिंग बनाने के लिए हमें अब CoreText के साथ खेलने की आवश्यकता नहीं है :) हमारे पास obj-c Foundation.framework NSParagraphStyle
और अन्य स्थिरांक जैसे नए वर्ग हैं जो हमारे जीवन को आसान बना देंगे। वाह!
तो, अगर हमारे पास यह स्ट्रिंग है:
NSString *text = @"Updated: 2012/10/14 21:59"
हमें केवल जिम्मेदार स्ट्रिंग बनाने की आवश्यकता है:
if ([_label respondsToSelector:@selector(setAttributedText:)])
{
// iOS6 and above : Use NSAttributedStrings
// Create the attributes
const CGFloat fontSize = 13;
NSDictionary *attrs = @{
NSFontAttributeName:[UIFont boldSystemFontOfSize:fontSize],
NSForegroundColorAttributeName:[UIColor whiteColor]
};
NSDictionary *subAttrs = @{
NSFontAttributeName:[UIFont systemFontOfSize:fontSize]
};
// Range of " 2012/10/14 " is (8,12). Ideally it shouldn't be hardcoded
// This example is about attributed strings in one label
// not about internationalisation, so we keep it simple :)
// For internationalisation example see above code in swift
const NSRange range = NSMakeRange(8,12);
// Create the attributed string (text + attributes)
NSMutableAttributedString *attributedText =
[[NSMutableAttributedString alloc] initWithString:text
attributes:attrs];
[attributedText setAttributes:subAttrs range:range];
// Set it in our UILabel and we are done!
[_label setAttributedText:attributedText];
} else {
// iOS5 and below
// Here we have some options too. The first one is to do something
// less fancy and show it just as plain text without attributes.
// The second is to use CoreText and get similar results with a bit
// more of code. Interested people please look down the old answer.
// Now I am just being lazy so :p
[_label setText:text];
}
वहाँ अच्छी परिचयात्मक ब्लॉग पोस्ट की एक जोड़ी है यहां पर लोगों से invasivecode इस बात का अधिक उदाहरण का उपयोग करता है के साथ समझाने NSAttributedString
, के लिए देखो "iOS 6 के लिए NSAttributedString का परिचय" और "iOS के लिए जिम्मेदार ठहराया तार इंटरफ़ेस बिल्डर का उपयोग करके" :)
पुनश्च: ऊपर कोड यह काम करना चाहिए, लेकिन यह मस्तिष्क-संकलित था। मुझे आशा है कि यह पर्याप्त है :)
IOS5 और नीचे के लिए पुराना उत्तर
एक CATextLayer का उपयोग करें साथ एक CATextLayer का ! 2 UILabels की तुलना में बहुत हल्का और सरल। (iOS 3.2 और ऊपर)
उदाहरण।
क्वार्ट्जकोर फ्रेमवर्क (कैलेयर्स के लिए आवश्यक), और कोरटेक्स्ट (आवश्यक स्ट्रिंग के लिए आवश्यक) जोड़ना न भूलें।
#import <QuartzCore/QuartzCore.h>
#import <CoreText/CoreText.h>
नीचे दिए गए उदाहरण में नेविगेशन नियंत्रक के टूलबार में एक सबलेयर जोड़ा जाएगा। iPhone में एक ला Mail.app। :)
- (void)setRefreshDate:(NSDate *)aDate
{
[aDate retain];
[refreshDate release];
refreshDate = aDate;
if (refreshDate) {
/* Create the text for the text layer*/
NSDateFormatter *df = [[NSDateFormatter alloc] init];
[df setDateFormat:@"MM/dd/yyyy hh:mm"];
NSString *dateString = [df stringFromDate:refreshDate];
NSString *prefix = NSLocalizedString(@"Updated", nil);
NSString *text = [NSString stringWithFormat:@"%@: %@",prefix, dateString];
[df release];
/* Create the text layer on demand */
if (!_textLayer) {
_textLayer = [[CATextLayer alloc] init];
//_textLayer.font = [UIFont boldSystemFontOfSize:13].fontName; // not needed since `string` property will be an NSAttributedString
_textLayer.backgroundColor = [UIColor clearColor].CGColor;
_textLayer.wrapped = NO;
CALayer *layer = self.navigationController.toolbar.layer; //self is a view controller contained by a navigation controller
_textLayer.frame = CGRectMake((layer.bounds.size.width-180)/2 + 10, (layer.bounds.size.height-30)/2 + 10, 180, 30);
_textLayer.contentsScale = [[UIScreen mainScreen] scale]; // looks nice in retina displays too :)
_textLayer.alignmentMode = kCAAlignmentCenter;
[layer addSublayer:_textLayer];
}
/* Create the attributes (for the attributed string) */
CGFloat fontSize = 13;
UIFont *boldFont = [UIFont boldSystemFontOfSize:fontSize];
CTFontRef ctBoldFont = CTFontCreateWithName((CFStringRef)boldFont.fontName, boldFont.pointSize, NULL);
UIFont *font = [UIFont systemFontOfSize:13];
CTFontRef ctFont = CTFontCreateWithName((CFStringRef)font.fontName, font.pointSize, NULL);
CGColorRef cgColor = [UIColor whiteColor].CGColor;
NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys:
(id)ctBoldFont, (id)kCTFontAttributeName,
cgColor, (id)kCTForegroundColorAttributeName, nil];
CFRelease(ctBoldFont);
NSDictionary *subAttributes = [NSDictionary dictionaryWithObjectsAndKeys:(id)ctFont, (id)kCTFontAttributeName, nil];
CFRelease(ctFont);
/* Create the attributed string (text + attributes) */
NSMutableAttributedString *attrStr = [[NSMutableAttributedString alloc] initWithString:text attributes:attributes];
[attrStr addAttributes:subAttributes range:NSMakeRange(prefix.length, 12)]; //12 is the length of " MM/dd/yyyy/ "
/* Set the attributes string in the text layer :) */
_textLayer.string = attrStr;
[attrStr release];
_textLayer.opacity = 1.0;
} else {
_textLayer.opacity = 0.0;
_textLayer.string = nil;
}
}
इस उदाहरण में मेरे पास केवल दो अलग-अलग प्रकार के फ़ॉन्ट (बोल्ड और सामान्य) हैं, लेकिन आपके पास अलग-अलग फ़ॉन्ट आकार, अलग-अलग रंग, इटैलिक्स, रेखांकित आदि भी हो सकते हैं। NSAttributedString / NSMutableAttributedring और पर एक नज़र डालें CoreText विशेषताएँ स्ट्रिंग कुंजियों ।
आशा करता हूँ की ये काम करेगा