如何计算动态添加文本的 UItextView 的内容大小………

发布于 2024-12-09 17:11:26 字数 214 浏览 1 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

深海少女心 2024-12-16 17:11:26

UITextViewUIScrollView 的子类。所以你可以直接使用contentSize方法,

CGSize _contentSize = textView.contentSize;
float _height = _contentSize.height;

UITextView is a subclass of UIScrollView. So you can directly use the contentSize method,

CGSize _contentSize = textView.contentSize;
float _height = _contentSize.height;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文