gpt4 book ai didi

swift - 禁用 UIPageViewController 滑动 - Swift

转载 作者:搜寻专家 更新时间:2023-10-31 08:10:17 25 4
gpt4 key购买 nike

在我的项目中,我使用 UIPageViewController 在 5 个子 UIViewController 之间滑动。在某些 subview Controller 中,我需要禁用 UIPageViewController 的滑动手势,以便当用户滑动时它不会更改为其他 View 。那么如何禁用 subview Controller 的滑动?

感谢帮助..谢谢

最佳答案

在您的页面 View Controller 中,添加以下内容

override func viewDidLoad(){
super.viewDidLoad()
NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(yourpageviewcontroller.enableSwipe(_:)), name:"enableSwipe", object: nil)
NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(yourpageviewcontroller.disableSwipe(_:)), name:"disableSwipe", object: nil)

}
func disableSwipe(notification: NSNotification){
self.dataSource = nil
}

func enableSwipe(notification: NSNotification){
self.dataSource = self
}

在您的 subview Controller 中,您可以通过关注发布通知。

NSNotificationCenter.defaultCenter().postNotificationName("enableSwipe", object: nil)

NSNotificationCenter.defaultCenter().postNotificationName("disableSwipe", object: nil)

关于swift - 禁用 UIPageViewController 滑动 - Swift,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38710959/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com