如何计算动态添加文本的 UItextView 的内容大小………
我有一个 UIScrollview ,其中放置了 UIImageView 和 UITextView 。这里我动态地将数据添加到 UITextView 中...我想同时滚动图像和文本。它工作得很好。我已经分配了 contentsize UITextView 的内容大小到 UIScrollView 的内容大小…..由于我动态添加数据,所以我无法使用标准值..有任何示例来查找 UITextView 的内容大小吗???
I ve an UIScrollview ,in which I ve placed UIImageView and UITextView..Here I add the data to the UITextView dynamically…I want to scroll both the image and the text at the same time .It works fine..I ve assigned the contentsize of the UITextView to the contentsize of the UIScrollView…..Since I am adding the data dynamically I can't use the standard values..Any samples to find the contentsize of UITextView????
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UITextView 是 UIScrollView 的子类。所以你可以直接使用contentSize方法,
UITextView is a subclass of UIScrollView. So you can directly use the contentSize method,