-3

这真的只是标题。我不知道该怎么做,可能真的很简单。

4

1 回答 1

1

要将框架尺寸分配给您的视图,在ViewDidLoad视图控制器的方法或init父视图的方法中,设置如下:

CGRect yourFrame = CGRectMake(0, 0, 100, 30);  //format is (pixels from left, pixels from top, pixels wide, pixels high)
yourTextView.frame = yourFrame;

如果要修改其中一个值,不能直接进行调整,像这样

yourTextView.frame.size.width += 20;  //THIS WON'T WORK!!!

做这样的事情,你需要这样做

CGRect newFrame = yourTextView.frame;   //find the current frame

newFrame.size.width += 20;              //make any modifications you want

yourTextView.frame = newFrame;          //point your view's frame var to the newFrame
于 2013-08-14T02:05:57.033 回答