iOS UIAlertController

来源:互联网 发布:mac如何卸载flash插件 编辑:程序博客网 时间:2024/04/29 13:20


//UIAlertController

UIAlertController *alertController = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:UIAlertControllerStyleAlert];

// Create the actions.

UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:cancelButtonTitle style:UIAlertActionStyleCancel handler:^(UIAlertAction *action) {

    

}];


UIAlertAction *otherAction = [UIAlertAction actionWithTitle:otherButtonTitle style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {

    RegisterViewController *registerVC = [[RegisterViewController alloc]init];

    [self.navigationController pushViewController:registerVC animated:YES];

    

}];


// Add the actions.

[alertController addAction:cancelAction];

[alertController addAction:otherAction];


[self presentViewController:alertController animated:YES completion:nil];


0 0
原创粉丝点击