gpt4 book ai didi

ios - 根据UITextview高度变化调整UILabel

转载 作者:行者123 更新时间:2023-11-29 02:25:52 25 4
gpt4 key购买 nike

我是 iOS 开发新手
当 UITextView 动态改变它的高度时(例如用户在 UITextView 中输入多行)如何根据 UITextView 的高度调整 UILabel 位置(低于 uitextview)

enter image description here

        after text entered by user 

enter image description here

最佳答案

如果你没有使用自动布局,你可以这样做

CGRect rect = self.lbl.frame;
rect.origin.y = self.txtVw.frame.origin.y + self.txtVw.frame.size.height;
self.lbl.frame = rect;

关于ios - 根据UITextview高度变化调整UILabel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27546727/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com