从 appdelegate 呈现一个视图控制器
Present a view controller from appdelegate
我没有使用 LaunchScreen.xib。我正在使用故事板作为启动画面。我正在调用 API 来获取初始图像。我在应用程序委托中这样做。我可以在我的视图控制器上显示图像,但是一旦我显示我的图像就无法转到另一个控制器。
这是我在 AppDelegate 中的内容:
-(void)connectionDidFinishLoading:(NSURLConnection *)connection{
self.window.frame=CGRectMake(0, 200, 100,30);
[self.window addSubview:[self convertImage: image]];
//upto here everything is fine
//now i am trying to wait for 3 seconds and call another view controller
sleep(3);
ViewController *login=[[ViewController alloc]initWithNibName:@"Login" bundle:nil];
[self presentviewcontroller:....]; // not able to present another controller
}
您可以使用:
[[self window].rootViewController presentViewController:login animated:YES completion:nil];
Swift 3
self.window?.rootViewController?.present(viewController, animated: true, completion: nil)
我没有使用 LaunchScreen.xib。我正在使用故事板作为启动画面。我正在调用 API 来获取初始图像。我在应用程序委托中这样做。我可以在我的视图控制器上显示图像,但是一旦我显示我的图像就无法转到另一个控制器。
这是我在 AppDelegate 中的内容:
-(void)connectionDidFinishLoading:(NSURLConnection *)connection{
self.window.frame=CGRectMake(0, 200, 100,30);
[self.window addSubview:[self convertImage: image]];
//upto here everything is fine
//now i am trying to wait for 3 seconds and call another view controller
sleep(3);
ViewController *login=[[ViewController alloc]initWithNibName:@"Login" bundle:nil];
[self presentviewcontroller:....]; // not able to present another controller
}
您可以使用:
[[self window].rootViewController presentViewController:login animated:YES completion:nil];
Swift 3
self.window?.rootViewController?.present(viewController, animated: true, completion: nil)