扩展UITextView

时间:2012-04-12 11:54:33

标签: iphone ios uikit uitextview

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

当我单击角落按钮时,应扩展textview取决于特定按钮。让我们采用左下角按钮,它应该在左下方展开。

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

1 个答案:

答案 0 :(得分: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