标签:
方法一:利用偏移量来滚动
- (void)setContentOffset:(CGPoint)contentOffset animated:(BOOL)animated;
方法二:利用rect来滚动
- (void)scrollRectToVisible:(CGRect)rect animated:(BOOL)animated;
注意点:如何使用scrollRectToVisible:animated:这个方法,需要把contentSize的width和height都不能为0,否则不能滚动。
标签:
原文地址:http://www.cnblogs.com/samyangldora/p/4629000.html