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];
Now after embedding some views in the gridview, I get some coordinates(x,y,width,height). Now I want to refresh the frame of my scrollview with these coordinates(x,y,width,height).
Since the scrollview is already created once,so What should I do to update or refresh it’s frame?
You can update it by same way as you have doen initially.