UILabelテキストの色を変更したいのですが、色を変更できません。これが私のコードの外観です。
UILabel *categoryTitle = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 46, 16)];
categoryTitle.text = @"abc";
categoryTitle.backgroundColor = [UIColor clearColor];
categoryTitle.font = [UIFont systemFontOfSize:12];
categoryTitle.textAlignment = UITextAlignmentCenter;
categoryTitle.adjustsFontSizeToFitWidth = YES;
categoryTitle.textColor = [UIColor colorWithRed:188 green:149 blue:88 alpha:1.0];
[self.view addSubview:categoryTitle];
[categoryTitle release];
ラベルのテキストの色は白で、私のカスタム色ではありません。
助けてくれてありがとう。
UIColorのRGBコンポーネントは、255までではなく、0〜1の間でスケーリングされます。
試して
categoryTitle.textColor = [UIColor colorWithRed:(188/255.f) green:... blue:... alpha:1.0];
Swiftの場合:
categoryTitle.textColor = UIColor(red: 188/255.0, green: ..., blue: ..., alpha: 1)
より良い方法があります
UIColor *color = [UIColor greenColor];
[self.myLabel setTextColor:color];
したがって、色付きのテキストがあります
これを試してください。アルファは不透明で、他は赤、緑、青のチャネルです。
self.statusTextLabel.textColor = [UIColor colorWithRed:(233/255.f) green:(138/255.f) blue:(36/255.f) alpha:1];
InterfaceBuilderで接続されていない可能性があります。
テキストの色(colorWithRed:(188/255) green:(149/255) blue:(88/255))
は正しい、接続の間違いかもしれません、
backgroundcolorはラベルの背景色に使用され、textcolorはプロパティtextcolorに使用されます。
// This is wrong
categoryTitle.textColor = [UIColor colorWithRed:188 green:149 blue:88 alpha:1.0];
// This should be
categoryTitle.textColor = [UIColor colorWithRed:188/255 green:149/255 blue:88/255 alpha:1.0];
// In the documentation, the limit of the parameters are mentioned.
Swiftコードに属性付きテキストの色を追加します。
スウィフト4:
let greenColor = UIColor(red: 10/255, green: 190/255, blue: 50/255, alpha: 1)
let attributedStringColor = [NSAttributedStringKey.foregroundColor : greenColor];
let attributedString = NSAttributedString(string: "Hello World!", attributes: attributedStringColor)
label.attributedText = attributedString
for Swift 3:
let greenColor = UIColor(red: 10/255, green: 190/255, blue: 50/255, alpha: 1)
let attributedStringColor : NSDictionary = [NSForegroundColorAttributeName : greenColor];
let attributedString = NSAttributedString(string: "Hello World!", attributes: attributedStringColor as? [String : AnyObject])
label.attributedText = attributedString