#在ios9及以上系統中建立對話方塊並彈出

liushaozhuanyong發表於2017-07-25

在ios9及以上系統中建立對話方塊並彈出

    //初始化提示框;
    UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提示" message:@"使用者名稱或密碼出現錯誤" preferredStyle: UIAlertControllerStyleAlert];

    [alert addAction:[UIAlertAction actionWithTitle:@"確定" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
      //此處書寫按鈕的點選事件
    }]];

    //彈出提示框;
    [self presentViewController:alert animated:true completion:nil];

相關文章