作者两年iOS开发经验,通过阅读苹果api重温各个知识点,如果你喜欢这个系列,请关注我。有任何建议请留言。转载请注明来源。
本来这个系列只是单纯的苹果api学习笔记,后来想学习一下YYKit的源码,所以在文章中一并加入
作者:Roger
Managing the Display of Content
-
contentOffset
-
contentSize
-
contentInset
ScorllView最基本的三个属性:contentOffset
表示ScorllView所展示区域左上角的坐标,contentSize
表示ScrollView实际的尺寸,contentInset表示边界的偏移量。这三个概念需要自己多理解,包括字面意思和呈现的效果。附一张图方便理解:
Managing Scrolling
-
scrollEnabled
判断ScrollView是否可以滑动
-
directionalLockEnabled
如果为NO,ScrollView可以随意的横向或纵向滑动。如果为YES,那么在一次滑动动作完成之前(即用户拖动完成并将手指从屏幕上举起),ScrollView只能响应其第一个接收到的滑动响应。即如果用户首先拖动ScrollView横向滑动,如果用户没有提起手指,那么用户无法再纵向拖动ScrollView,反之亦然。如果用户是斜线拖动,那么用户可以在一次滑动动作完成之前随意横行或纵向滑动。
-
scrollsToTop
如果为YES,用户点击状态栏时,ScrollView会自动滑动到顶部,如果为NO,
scrollViewShouldScrollToTop:
方法返回NO,另一种返回NO的情况是ScrollView已经在顶部了。当滑动结束时会触发代理方法scrollViewDidScrollToTop:
。此属性默认为YES。在iphone上如果屏幕上有多个ScrollView且scrollsToTop为YES,那么点击状态栏时无法触发滑动至顶的动作。 -
scrollRectToVisible:animated:
定义一个矩形(包括大小和左上角位置),将ScrollView滑动到能展示这个矩形的区域内。如果这个矩形已经在ScrollView上展示出来,那么这个方法不做任何操作。
-
pagingEnabled
判断ScrollView是否分页滑动
-
bounces
判断ScrollView滑动到边缘时,是否有回弹的效果。
-
alwaysBounceHorizontal && alwaysBounceVertical
如果bounces为YES,且这个属性也是YES,那么即使contentSize小于或等于sontentOffset,ScrollView滑动到边缘时,也会有回弹的效果。
-
touchesShouldBegin:withEvent:inContentView:
如果想要将ScrollView的手势下传到ContentView,则返回YES
- (BOOL)touchesShouldBegin:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event inContentView:(UIView *)view{
NSLog(@"secondView touchesShouldBegin");
if ([view isKindOfClass:[UIButton class]]) {
return YES;
}
return NO;
}
-
touchesShouldCancelIncontentView:
填坑中...
-
canCancelContentTouches
填坑中...
-
delaysContentTouches
填坑中...
-
decelerationRate
用户滑动到边界松手时,回弹的速度。范围在0.0到1.0之间。
-
draging
判断用户是否正在滑动ScrollView(只读)。
-
tracking
判断用户是否已经触碰在ScrollView上准备滑动(未滑动)(只读)。
-
decelerating
判断用户滑动ScrollView且举起手指后,ScrollView是否正在滑动中。
Managing the Scroll Indicator
-
indicatorStyle
枚举,设置滑动条样式
-
scrollIndicatorInsets
设置滑动条的偏移量
-
showHorizontalScrollIndicator && showVerticalScrollIndicator
展示横向/纵向的滑动条
-
- flashScrollIndicators
闪一下滚动条,暗示是否有可滚动的内容。可以在ViewDidAppear或[table reload]之后调用。
Zooming and Panning
-
panGestureRecognizer && pinchGestureRecognizer
填坑中...
-
zoomToRect:animated:
将内容视图缩放到指定的Rect中。
-
zoomScale
ScrollView的缩放比例,默认值为1.0。
-
setZoomScale:animated:
设置程序缩放比例。
-
maximumZoomScale
最大放大比例,默认值为1.0,不得小于minimumZoomScale。
-
minimumZoomScale
最小放大比例,默认值为1,不得大于maxmumZoomScale。
-
zoomBouncing
只读,当缩放超过最大或者最小范围的时候,回弹到最大最小范围的过程中,该值返回YES。
-
zooming
只读,判断用户是否正在进行缩放手势。
-
bouncesZoom:
描述在缩放超过缩放比例时,是否有bounce(回弹效果),默认值为YES。如果值为NO,则达到最大或最小缩放比例时会立即停止缩放。否则,产生回弹效果。
Managing the Keyboard
-
keyboardDismissMode
iOS 7.0新属性,枚举,设置ScrollView键盘收起的方式
- UIScrollViewKeyboardDismissModeNone,
- UIScrollViewKeyboardDismissModeOnDrag,
- UIScrollViewKeyboardDismissModeInteractive
OnDrag表示ScrollView滑动的时候收起键盘,Interactive表示随着ScollView的滑出一同收起键盘(实际操作触发条件是下拉ScrollView至顶部出发回弹效果时,回收键盘)。
Constants
-
UIScrollViewIndicatorStyle
枚举,通过设置indicatorStyle,设置滑动条的风格
- UIScrollViewIndicatorStyleDefault,
- UIScrollViewIndicatorStyleBlack,
- UIScrollViewIndicatorStyleWhite
-
Deceleration Constants
枚举常量,通过属性decelerationRate设置回弹效果的回弹速度
_scrollView.decelerationRate = UIScrollViewDecelerationRateNormal;
- UIScrollViewDecelerationRateNormal,
- UIScrollViewDecelerationRateFast
YYKit For UIScrollView
在UITableview中,有滑动到顶部的方法。在YYKit中,也给ScrollView添加了滑动到顶,底,左,右部的方法。
我们拿滑动到顶部的方法举例:
- (void)scrollToTop {
[self scrollToTopAnimated:YES];
}
- (void)scrollToTopAnimated:(BOOL)animated {
CGPoint off = self.contentOffset;
off.y = 0 - self.contentInset.top;
[self setContentOffset:off animated:animated];
}
其实实现方法很简单,就是将ScrollView的左上角坐标移动到ScrollView在顶部的(0+偏移量)的位置上。