UIAlertController *alertV = [UIAlertController alertControllerWithTitle:@"进入应用" message:nil preferredStyle: UIAlertControllerStyleAlert];
[alertV addAction:[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
NSLog(@"点击取消");
}]];
[self presentViewController:alertV animated:YES completion:nil];
UIAlertController *alertV = [UIAlertController alertControllerWithTitle:@"进入应用" message:nil preferredStyle: UIAlertControllerStyleAlert];
[alertV addAction:[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {