CustomAlertViewController *cust = [[CustomAlertViewController alloc]init];
cust.modalPresentationStyle = UIModalPresentationOverFullScreen;//设置模态的屏幕
cust.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;//设置模态的跳转方式
[self.navigationController presentViewController:cust animated:YES completion:^{
}];