Raf*_*fay 2 cocoa-touch scroll objective-c uiscrollview ios
如何检查滚动视图是否已在 iOS 中滚动到屏幕底部?提前致谢。
UIScrollViewDelegate在承载 UIScrollView 的类中实现。
设置scrollView.delegate属性。
实现下面的方法。
-(void)scrollViewDidScroll: (UIScrollView*)scrollView
{
float scrollViewHeight = scrollView.frame.size.height;
float scrollContentSizeHeight = scrollView.contentSize.height;
float scrollOffset = scrollView.contentOffset.y;
if (scrollOffset + scrollViewHeight == scrollContentSizeHeight)
{
//This condition will be true when scrollview will reach to bottom
}
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
5141 次 |
| 最近记录: |