web-dev-qa-db-ja.com

UILabelテキストの色を変更できません

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];

ラベルのテキストの色は白で、私のカスタム色ではありません。

助けてくれてありがとう。

66
HelloWorld

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)
174
kennytm

より良い方法があります

UIColor *color = [UIColor greenColor];
[self.myLabel setTextColor:color];

したがって、色付きのテキストがあります

8
user1936313

これを試してください。アルファは不透明で、他は赤、緑、青のチャネルです。

self.statusTextLabel.textColor = [UIColor colorWithRed:(233/255.f) green:(138/255.f) blue:(36/255.f) alpha:1];
2
Vitaliy

InterfaceBuilderで接続されていない可能性があります。

テキストの色(colorWithRed:(188/255) green:(149/255) blue:(88/255))は正しい、接続の間違いかもしれません、

backgroundcolorはラベルの背景色に使用され、textcolorはプロパティtextcolorに使用されます。

1
Vaibhav Sharma
// 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.

colorWithRed:green:blue:alpha:ドキュメントリンク

0

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 
0
Mr. Tann