ios 5在textView上显示白色字体

时间:2011-12-22 00:24:55

标签: ios colors textview

我在ipad应用程序中有一个textView,我正在使用以下内容

self.textView = [[[UITextView alloc] initWithFrame:CGRectMake(25, 73, 665, 85)] autorelease];
self.textView.delegate = self;
[self.textView setTextColor:[UIColor blueColor]];

[self.textView setFont:[UIFont systemFontOfSize:18.0f]];
//[self.textView setTextColor:[UIColor colorWithRed:153/255.0 green:153/255.0 blue:153/255.0 alpha:1]]; //color
//self.textView.textColor =[UIColor grayColor];
[self addSubview:self.textView];

它在ios 4上显示正确的字体颜色,但在ios5上,字体变为WHITE ???

为什么?

iOS4的 enter image description here

的ios5 enter image description here

如何解决这个问题?

谢谢!

1 个答案:

答案 0 :(得分:0)

您提供的代码中没有任何内容可以指示textView图灵文本为白色。必须有一些其他方法,你不包括将此文本设置为白色。我会在整个项目中搜索 white ,以查看颜色是否在其他地方设置。另外,我会检查Interface Builder,看看是否有任何关于文本的指示被更改为白色。