美文网首页
(IOS)显示原生弹框

(IOS)显示原生弹框

作者: rightmost | 来源:发表于2018-12-26 17:07 被阅读0次

+ (void)showInfo:(NSString*)info VC:(UIViewController*)VC

{

    UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:@"温馨提示" message:info preferredStyle:UIAlertControllerStyleAlert];

    UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:nil];

    [alertVCaddAction:okAction];

    [VCpresentViewController:alertVC animated:YES completion:nil];

}

相关文章

网友评论

      本文标题:(IOS)显示原生弹框

      本文链接:https://www.haomeiwen.com/subject/tuxklqtx.html