1

我在文本视图中遇到角落按钮问题。

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

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

4

1 回答 1

1

您是否尝试在 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; // move 50 points towards the top

于 2012-04-12T12:37:47.650 回答