gpt4 book ai didi

ios - UIPageViewController滑动时黑色背景多

转载 作者:可可西里 更新时间:2023-11-01 04:41:12 25 4
gpt4 key购买 nike

我正在使用 UIPageViewController 为我的 objective-c 应用创建一些介绍幻灯片。

但是当我在第一张幻灯片中向左滑动更多或将最后一个 slider 图像向右滑动更多时,我可以看到黑色背景。

如何防止用户在第一个 slider 中向左滑动更多而在最后一个 slider 中向右滑动更多。

非常感谢。

enter image description here

enter image description here

最佳答案

受@Munahil 启发的 Swift 3 代码:

class TutorialViewController : UIPageViewController {

override func viewDidLoad() {
super.viewDidLoad()

...

// Add view to mask default black background of UIPageViewControllers
let bgView = UIView(frame: UIScreen.main.bounds)
bgView.backgroundColor = UIColor.blue
view.insertSubview(bgView, at: 0)

...
}

关于ios - UIPageViewController滑动时黑色背景多,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31932977/

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