Paulpang / CKAlertViewController

漂亮简洁的弹出框

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

一款漂亮简洁的警告框

用法与UIAlertController类似

    CKAlertViewController *alertVC = [CKAlertViewController alertControllerWithTitle:@"Access Microphone?" message:@"Are you       sure that you want to allow this app to access your microphone?" ];
    
    CKAlertAction *cancel = [CKAlertAction actionWithTitle:@"取消" handler:^(CKAlertAction *action) {
        NSLog(@"点击了 %@ 按钮",action.title);
    }];
    
    CKAlertAction *sure = [CKAlertAction actionWithTitle:@"确定" handler:^(CKAlertAction *action) {
        NSLog(@"点击了 %@ 按钮",action.title);
    }];
    
    [alertVC addAction:cancel];
    [alertVC addAction:sure];
    
    [self presentViewController:alertVC animated:NO completion:nil];

About

漂亮简洁的弹出框


Languages

Language:Objective-C 100.0%