美文网首页
UIAlertController 控件

UIAlertController 控件

作者: nalis风 | 来源:发表于2016-07-20 20:41 被阅读12次

    UIAlertController* alertController=[UIAlertController alertControllerWithTitle:@"您的选择" message:[NSString stringWithFormat:@"%@",sender] preferredStyle:UIAlertControllerStyleAlert];

    UIAlertAction* defaultAction=[UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {

    }];//一个UIAlertAction 是UIAlertController的一个按钮

    [alertController addAction:defaultAction];

    [self presentViewController:alertController animated:YES completion:nil];

    相关文章

      网友评论

          本文标题:UIAlertController 控件

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