如何动态设置 UIScrollView 的内容大小
我正在开发一个使用 UIScrollView
来显示图像和一些文本的应用程序。当我为 UIscrollView
设置固定大小时,整个事情都可以正常工作:
[scrollview setContentSize:(CGSizeMake(320, 480))];
我的问题是文本是通过某些网络服务提供的,大小各不相同,所以我想我必须设置内容大小是动态的,有人可以告诉我该怎么做吗?有关信息,图像的大小是固定的。先感谢您。
I'm working on an app that uses a UIScrollView
to display an image and some text. I have the whole thing to work properly when i set a fixed size for the UIscrollView
ex:
[scrollview setContentSize:(CGSizeMake(320, 480))];
My problem is that the text is fed via some web services an the size varies so i guess i will have to set the content size dynamically, can somebody please tell me how to do that. For info the size of the image is fixed. Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要滚动视图来设置内容大小,因此首先在视图中设置 deragand drop uiscrollview 并设置 IBOutlat 和 deleget,然后在 viewdidload 中设置内容大小。像那样..
;
You need scrollview to set content size, so first of all set deragand drop uiscrollview in view and set IBOutlat and deleget and than after viewdidload in set content size. like that..
;