gpt4 book ai didi

iphone - 扩展 UITextView

转载 作者:行者123 更新时间:2023-11-29 13:37:35 26 4
gpt4 key购买 nike

我在 TextView 中遇到角按钮问题。

当我单击角按钮时,textview 应该展开取决于特定按钮。让我们拿一个左下角的按钮,它应该在左下角展开。

同样它应该适用于其他三个角。

最佳答案

您是否尝试过在 UITextView 上设置新框架?!有什么问题?

下扩展示例:

UITextView* yourTextView;
CGRect currentFrame = yourTextView.frame;
currentFrame.size.height += 50; // extension to the bottom with 50 points
yourTextView.frame = currentFrame;

如果想向上延伸,还要调整y的位置:
currentFrame.origin.y -= 50;//向顶部移动 50 点

关于iphone - 扩展 UITextView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10123056/

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