recherche

Maison  >  Questions et réponses  >  le corps du texte

objective-c - Comment modaliser un UIAlertController dans la méthode active d'Appdelegate.m

Comment modaler un UIAlertController dans la méthode proxy actif d'Appdelegate.m ?

Vous pouvez ignorer le message d'erreur, le problème principal est dans la dernière partie

高洛峰高洛峰2811 Il y a quelques jours579

répondre à tous(1)je répondrai

  • 怪我咯

    怪我咯2017-05-02 09:26:06

    //Initialiser UIAlertController

    UIAlertController *alertCtl = [UIAlertController alertControllerWithTitle:@"提示" message:@"AppDelegate中" preferredStyle:UIAlertControllerStyleAlert];
    UIAlertAction *alertAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:nil];
    [alertCtl addAction:alertAction];
    //初始化UIWindows
    UIWindow *aW = [[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
    aW.rootViewController = [[UIViewController alloc]init];
    aW.windowLevel = UIWindowLevelAlert + 1;
    [aW makeKeyAndVisible];
    [aW.rootViewController presentViewController:alertCtl animated:YES completion:nil];

    répondre
    0
  • Annulerrépondre