我想更改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];
標籤的文字顏色是白色的,不是我的自定義顏色。
感謝您的幫助。
如果你感到困惑,在此,作爲測試使用.. ** [的UIColor綠彩],[的UIColor黃色] **等。 – Fattie 2014-05-13 15:05:37