UIAlertController * alertController = [UIAlertController alertControllerWithTitle:@"是否打開「微信」" message:@"" preferredStyle:UIAlertControllerStyleAlert];微信
UIAlertAction * cancleAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
blog
}];
[alertController addAction:cancleAction];it
UIAlertAction * sureAction = [UIAlertAction actionWithTitle:@"打開" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
}];io
[alertController addAction:sureAction];
[self presentViewController:alertController animated:YES completion:nil];im