Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个关于显示新闻网站图像的小应用程序。假设有很多图像。但每次加载时,我只想加载 3 张图像,然后将它们显示在屏幕上。只有当用户从左向右滚动时,它才会继续加载另外 3 张图像。
滚动时如何触发该操作?
请帮帮我。非常感谢。
您可以实现 UIScrollView 委托,它有一些您想要实现的方法:
UIScrollView 委托
例如:
- (void)scrollViewDidScroll:(UIScrollView *)scrollView - (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView