我正在开发一个应用程序,ViewController
当我按下UIAlertView
. 我怎么能这样做?
我在这里找到了这个解决方案:iOS Dev: Segue by press a button in an Alert? ,但它没有用。
xCode 说:
the method: presentModalViewController is deprecated
我在网上发现我应该使用该方法presentViewController
。
我试图这样做,但它显示没有任何交互的黑屏,这是怎么回事?我在这里粘贴我的代码,也许你可以帮助我。
-(void) alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
if (buttonIndex != alertView.cancelButtonIndex)
{
PromoViewController *pvc = [[PromoViewController alloc] init];
[self presentViewController:pvc animated:YES completion:nil];
}
}
谢谢