我有一個UIView
,我需要伸展到UIScrollView
的寬度。問題是下一個: 我需要伸展UIView(這是EGOTableViewPullRefresh,只是一個自定義的UIView)。在視圖初始化中,我把[_refreshHeaderView setAutoresizingMask:UIViewAutoresizingFlexibleWidth];
。我嘗試過:將UIView伸展到UIScrollView的寬度
-(void)scrollViewDidZoom:(UIScrollView *)scrollView {
NSLog(@"scrollViewDidZoom");
[_refreshHeaderView setFrame:CGRectMake(0.0f, 0.0f - webScroller.bounds.size.height, webScroller.frame.size.width, webScroller.bounds.size.height)];
}
但它看起來像圖像。如果我進入iOS設計的頁面(如Mobile Google),它看起來很好: 我該怎麼做?