我正在为iOS应用程序制作框架,我正在尝试将视图直接添加到rootviewcontroller。 为此,我首先检索rootviewcontroller:
window = [[UIApplication sharedApplication] keyWindow];
rootvc = window.rootViewController;
现在我有一个类,它是UIViewcontroller
的子类,如下所示:
@implementation mainView : UIViewController
我想要实现的是将rootviewcontroller分配给viewcontroller,以便我可以使用[self addSubview:example]
我已经尝试过但没有工作:
[self presentViewcontroller:rootvc animated:YES completion:nil];
self = rootvc