UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:nil preferredStyle:UIAlertControllerStyleActionSheet];
[alert addAction:[UIAlertAction actionWithTitle:@"025-58185888" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
//、调用 打电话phone
//iOS应用内拨打电话结束后返回应用
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://025-58185888"]];
}]];
[alert addAction:[UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction * _Nonnull action) {
}]];
[self presentViewController:alert animated:YES completion:nil];
//文字颜色
[alertAct1 setValue:[UIColor blackColor] forKey:@"_titleTextColor"];