ScrollView相关

2017-03-25  本文已影响2人  竹菜板
scrollView.setContentOffset(CGPoint(x: 0, y: 0), animated: true)

if scrollView.contentOffset.y < -100 { 
    // 下拉
 }
 
if scrollView.bounds.size.height + scrollView.contentOffset.y > scrollView.contentSize.height { 
    // 上拉
}

上一篇 下一篇

猜你喜欢

热点阅读