任何人都可以向我展示如何向 UIScrollView 添加文本的示例吗?
Posted
技术标签:
【中文标题】任何人都可以向我展示如何向 UIScrollView 添加文本的示例吗?【英文标题】:Can anyone show me an example on how to add text to a UIScrollView? 【发布时间】:2011-02-28 15:22:24 【问题描述】:我见过的大多数代码示例都显示了添加的图像。我正在寻找一个基本上只显示大约 10-15 行数据被添加到 UIScrollVIew 的示例。
任何可靠的建议将不胜感激。
【问题讨论】:
【参考方案1】:把这个放到: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
【讨论】:
【参考方案2】:查看 UITextView,它相当容易实现,但它可能没有您想要的多功能性。 http://developer.apple.com/library/ios/#documentation/uikit/reference/UITextView_Class/Reference/UITextView.html
【讨论】:
以上是关于任何人都可以向我展示如何向 UIScrollView 添加文本的示例吗?的主要内容,如果未能解决你的问题,请参考以下文章
任何人都可以向我描述 Flutter 中 Material 和 MaterialApp 之间的区别,以及何时使用哪个?
任何人都可以向我解释CMVideoFormatDescriptionGetCleanAperture()吗?
当我运行迁移时,uuid 字段总是在更新,它会给我一些性能问题,任何人都可以向我解释原因和解决方案