presentModalViewController不会调用任何方法

时间:2012-06-25 13:17:15

标签: iphone

在使用SSO登录Facebook后,presentModalViewController不会调用任何方法。

SignInViewController *signView=[[SignInViewController alloc]init];
signView.delegate=self;
[self.navigationController presentModalViewController:signView animated:YES];
[signView release];
- (void)cancelAction
{
      [self dismissModalViewControllerAnimated:YES];
}

cancelAction方法正在调用但未被解雇..

请帮帮我。

1 个答案:

答案 0 :(得分:-1)

SignInViewController *signView=[[SignInViewController alloc]init];

UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:signView];

[signView release];

[self presentModalViewController:navigationController animated:YES];

[navigationController release];

-(void)cancelAction
{

      [self dismissModalViewControllerAnimated:YES];
}

尝试实现这个......

希望这对你有用..

相关问题