使用大标题时,不会触发 UIScrollView 中的 UIRefreshControl
UIRefreshControl in a UIScrollView is not triggered when Large title is used
当我为导航栏使用大标题时,为 UIScrollView 添加的 UIRefresh 控件在下拉时不会触发
{
self.scrollView.refreshControl = [[UIRefreshControl alloc] init];
[self.scrollView bringSubviewToFront:self.scrollView.refreshControl];
// add target
}
当我使用普通小标题时,它通过触发事件开始工作
如何使用大标题?
我刚才遇到了同样的问题,对我来说,我可以通过在 viewDidAppear
中调用 scrollView.refreshControl.didMoveToSuperview()
来解决它。
当我为导航栏使用大标题时,为 UIScrollView 添加的 UIRefresh 控件在下拉时不会触发
{
self.scrollView.refreshControl = [[UIRefreshControl alloc] init];
[self.scrollView bringSubviewToFront:self.scrollView.refreshControl];
// add target
}
当我使用普通小标题时,它通过触发事件开始工作
如何使用大标题?
我刚才遇到了同样的问题,对我来说,我可以通过在 viewDidAppear
中调用 scrollView.refreshControl.didMoveToSuperview()
来解决它。