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)
。
由于滚动视图已经创建一次,所以我应该怎么做才能更新或刷新它的框架?