我创建了UIPageViewController
的子类:
public class MilestonesPageViewController: UIPageViewController, UIPageViewControllerDataSource, UIPageViewControllerDelegate {}
在这个课程中,我没有覆盖任何初始化程序。当我尝试创建MilestonesPageViewController
的新实例时,它不允许我使用(transitionStyle: navigationOrientation: options:)
初始值设定项,只允许使用()
和(nibName: bundle:)
。
有人可以解释一下,为什么初始化程序无法访问?提前谢谢。