У меня есть textView, в приложении для ipad, я использую следующее,
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 шрифт становится белым ???
почему?
ios4
ios5
как это исправить?
спасибо!