美文网首页
普通的提示框

普通的提示框

作者: aggie1024 | 来源:发表于2018-12-25 17:45 被阅读0次

弹出提示框,点击确定取消提示框

  • (void)showError:(NSString *)errorMsg {
    // 1.弹框提醒
    // 初始化对话框
    UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"" message:errorMsg preferredStyle:UIAlertControllerStyleAlert];
    [alert addAction:[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDefault handler:nil]];
    // 弹出对话框
    [self presentViewController:alert animated:true completion:nil];
    }

调用:

[self showError:@"内容根据需求来写啊"];

相关文章

网友评论

      本文标题:普通的提示框

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