-1
self.scrollView.frame=CGRectMake(CGRectGetMinX(self.bounds),CGRectGetMaxY(self.bounds),CGRectGetWidth(self.bounds),CGRectGetHeight(self.bounds));

[self.scrollView addSubview:self.hourView];

[self.scrollView addSubview:self.gridView];

现在在 gridview 中嵌入一些视图后,我得到了一些coordinates(x,y,width,height). 现在我想用这些刷新我的滚动视图的框架coordinates(x,y,width,height)

由于滚动视图已经创建一次,所以我应该怎么做才能更新或刷新它的框架?

4

2 回答 2

0

您可以通过与最初相同的方式对其进行更新。

scrollView.frame=CGRectMake(x,y,width,height);
于 2012-06-25T12:57:20.650 回答
0

[yourScrollView setFrame:CGRectmake(,,,)];你可以随时打电话

于 2012-06-25T13:03:07.243 回答