在基于导航的应用程序中,可以使用方法pushViewController:animated
。这是UINavigationController
类的方法。但是,在源文件中没有任何地方可以看到导入此类的任何#import语句。该文档未将UIViewController显示为继承自UINavigationController。
那么基于导航的应用程序如何能够访问此方法?
答案 0 :(得分:2)
UIViewController有一个名为navigationController
的属性,它是UINavigationController
的一个实例。这就是它访问它的方式。