//不自動調(diào)整insets
self.automaticallyAdjustsScrollViewInsets = NO;
// 是否支持滑動最頂端
scrollView.scrollsToTop = NO;
contentsize是內(nèi)容的寬和高虎谢,
// 設(shè)置內(nèi)容大小
scrollView.contentSize = CGSizeMake(320, 460*10);
contentInset增加你在contentsize中指定的內(nèi)容能夠滾動的上下左右區(qū)域數(shù)量contentInset.top以及contentInset.buttom分別表示上面和下面的距離盟榴。
scrollView.contentInset = UIEdgeInsetsMake(333, 3, 3, 3);
// 是否反彈
scrollView.bounces = NO;
// 是否分頁
scrollView.pagingEnabled = YES;
// 是否滾動
scrollView.scrollEnabled = NO;
//設(shè)置滾動條的顏色
_contentView.indicatorStyle=UIScrollViewIndicatorStyleBlack;
//隱藏底部的滾動條
[_contentView setShowsHorizontalScrollIndicator:NO];
//隱藏豎直方向的滾動條
[_contentView setShowsVerticalScrollIndicator:NO];
// 設(shè)置內(nèi)容的邊緣和Indicators邊緣
scrollView.contentInset = UIEdgeInsetsMake(0, 50, 50, 0);
// 滑動到頂部時調(diào)用該方法
- (void)scrollViewDidScrollToTop:(UIScrollView *)scrollView{
NSLog(@"scrollViewDidScrollToTop");
}
設(shè)置屏幕滾動
self.scrollView.contentOffset =CGPointMake(i, 0);