访问使用presentModalViewController加载的ViewController

时间:2011-07-26 13:33:34

标签: iphone objective-c xcode

我有以下代码:

-(void) viewDidLoad{
    LoginViewController *lvc = [[LoginViewController alloc] init];
    [lvc setDelegate:self];
    [self presentModalViewController:lvc animated:YES];
}

有没有办法访问当前已加载的视图而不扩展lvc的范围(即变成实例变量)...

1 个答案:

答案 0 :(得分:0)

您可以通过以下方式访问它:

self.modalViewController