谁能告诉我一个如何将文本添加到UIScrollView的示例?

时间:2011-02-28 15:22:24

标签: iphone ios uiscrollview

我见过的大多数代码示例都显示了添加的图像。我正在寻找一个示例,基本上只显示大约10-15行数据被添加到UIScrollVIew。

任何可靠的建议都将受到高度赞赏。

2 个答案:

答案 0 :(得分:7)

将其放入:viewDidLoad {}

//create UITextView

UITextView *myUITextView = [[UITextView alloc] initWithFrame:CGRectMake(20,188,280,260)];
myUITextView.text = infoText;
myUITextView.textColor = [UIColor lightGrayColor];
myUITextView.font = [UIFont systemFontOfSize:14];
[myUITextView setBackgroundColor:[UIColor clearColor]];
myUITextView.editable = NO;
myUITextView.scrollEnabled = YES;
[Scrollerview addSubview:myUITextView];
[myUITextView release];

其中'infoText'是你的文字,'Scrollerview'是你的uiScrollView

答案 1 :(得分:1)

查看UITextView,它很容易实现,但它可能没有你想要的多功能性。 http://developer.apple.com/library/ios/#documentation/uikit/reference/UITextView_Class/Reference/UITextView.html