オブジェクトのattributedText
プロパティを設定できますか? UILabel
以下のコードを試しました:
UILabel *label = [[UILabel alloc] init];
label.attributedText = @"asdf";
しかし、次のエラーが発生します。
タイプ「UILabel *」のオブジェクトにプロパティ「attributedText」が見つかりません
#import <CoreText/CoreText.h>
動作していません
オブジェクトのattributedText
プロパティを設定できますか? UILabel
以下のコードを試しました:
UILabel *label = [[UILabel alloc] init];
label.attributedText = @"asdf";
しかし、次のエラーが発生します。
タイプ「UILabel *」のオブジェクトにプロパティ「attributedText」が見つかりません
#import <CoreText/CoreText.h>
動作していません
残念ながら、代わりにOHAttributedLabelを使用できます。UILabel
属性付き文字列はサポートされていません。
更新: iOS6 以降、UILabel
属性付き文字列をサポートしています。詳細については、以下のUILabel リファレンスまたは Michael Kessler の回答を参照してください。
スウィフト 4 の場合:
iOS 11 および xcode 9.4
let str = "This is a string which will shortly be modified into AtrributedString"
var attStr = NSMutableAttributedString.init(string: str)
attStr.addAttribute(.font,
value: UIFont.init(name: "AppleSDGothicNeo-Bold", size: 15) ?? "font not found",
range: NSRange.init(location: 0, length: str.count))
self.textLabel.attributedText = attStr
そのため、文字列のサブ文字列に対して異なるプロパティを持つコードを次に示します。
NSString *str=@"10 people likes this";
NSString *str2=@"likes this";
if ([str hasSuffix:str2])
{
NSMutableAttributedString * string = [[NSMutableAttributedString alloc] initWithString:str];
// for string 1 //
[string addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NSMakeRange(0,str.length-str2.length)];
[string addAttribute:NSFontAttributeName value:[UIFont boldSystemFontOfSize:14] range:NSMakeRange(0,str.length-str2.length)];
// for string 2 //
[string addAttribute:NSForegroundColorAttributeName value:[UIColor greenColor] range:NSMakeRange((str.length-str2.length),str2.length)];
[string addAttribute:NSFontAttributeName value:[UIFont italicSystemFontOfSize:12] range:NSMakeRange((str.length-str2.length),str2.length)];
label.attributedText=string;
}
else
{
label.text =str;
}
お役に立てれば ;)
NSMutableAttributedString* attrStr = [NSMutableAttributedString attributedStringWithString:@"asdf"];
[attrStr setFont:[UIFont systemFontOfSize:12]];
[attrStr setTextColor:[UIColor grayColor]];
[attrStr setTextColor:[UIColor redColor] range:NSMakeRange(0,5)];
lbl.attributedText = attrStr;
UIFont *font = [UIFont boldSystemFontOfSize:12];
NSDictionary *fontDict = [NSDictionary dictionaryWithObject: font forKey:NSFontAttributeName];
NSMutableAttributedString *attrString = [[NSMutableAttributedString alloc] initWithString:@" v 1.2.55" attributes: fontDict];
UIFont *fontNew = [UIFont boldSystemFontOfSize:17];
NSDictionary *fontDictNew = [NSDictionary dictionaryWithObject: fontNew forKey:NSFontAttributeName];
NSMutableAttributedString *attrStringNew = [[NSMutableAttributedString alloc] initWithString:@“Application” attributes: fontDictNew];
[attrStringNew appendAttributedString: attrString];
self.vsersionLabel.attributedText = attrStringNew;