UIAlertController

来源:互联网 发布:pps网络电视播放器 编辑:程序博客网 时间:2024/05/18 14:23
UIAlertController *alert = [UIAlertController alertControllerWithTitle:msg message:nil preferredStyle:UIAlertControllerStyleActionSheet];
    [alert addAction:[UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleDestructive handler:^(UIAlertAction *action) {
        NSLog(@"确定");
    }]];
    [self presentViewController:alert animated:YES completion:^{
        
    }];
0 0
原创粉丝点击