scrollViewDidScroll never called(scrollViewDidScroll 从未调用过)
本文介绍了scrollViewDidScroll 从未调用过的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在视图中有一个滚动视图.我想使用函数 scrollViewDidScroll 来检查和更新箭头(左右).
I have a Scrollview within View. I want to use the function scrollViewDidScroll to check and update the arrows (left right).
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
NSLog(@"Did scroll");
[self updateButtons];
}
当我向左或向右滚动时,似乎不会调用 scrollViewDidScroll.我搜索了所有内容,但没有找到解决方案.
It seems scrollViewDidScroll won't be called when I scroll left or right. I searched everything but didn't found a solution.
希望有人有解决方案.
推荐答案
典型的错误是没有简单地设置视图的委托".你可能忘记的是
The typical error is that "one does not simply set the delegate of a view". What you have probably forgotten is
theScrollView.delegate = self;
这篇关于scrollViewDidScroll 从未调用过的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:scrollViewDidScroll 从未调用过
基础教程推荐
猜你喜欢
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01