Создано UITextView
в UIScrollView
scrollView = [[UIScrollView alloc]init];
self.textView = [[[UITextView alloc] initWithFrame:CGRectMake(10, 225, 300, 100)]autorelease];
self.textView.textColor = [UIColor brownColor];
self.textView.font = [UIFont fontWithName:@"Georgia-Bold" size:14];
self.textView.textAlignment = UITextAlignmentCenter;
self.textView.backgroundColor = [UIColor colorWithHue:2.0/12 saturation:2.0 brightness:4.0/10 alpha:1.0];
self.textView.editable = NO;
self.textView.textAlignment = UITextAlignmentCenter;
self.textView.text = @"this is uitext. this is uitext.....";
[scrollView addSubview:textView];
Все, что я могу видеть, это черный экран, почему я не вижу текстовое представление.
Спасибо за помощь.