創建UITextView
在UIScrollView
UITtextView在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];
所有讀音字能看到的是黑屏,爲什麼我不是看到我的TextView。
感謝您的幫助。
你在哪裏推,顯示或添加scrollView本身? 我重新這是在你的一個視圖控制器。因此您首先必須將scrollview剪輯到您的視圖(作爲子視圖或推送視圖)。這應該可以解決它。 – 2012-03-10 22:50:38
或在您的界面中創建scrollView並將其與出口連接到您的viewcontroller =) – 2012-03-10 22:52:39
我不使用interfacebuilder,但編程 – user1120133 2012-03-10 22:53:52