AlertViewBlocks 1.1.0

AlertViewBlocks 1.1.0

测试已测试
语言语言 Obj-CObjective C
许可证 自定义
发行最新发行2016年11月

Danilo Priore维护。



使使用 AlertView 而不必使用实例变量在 iOS 和 tvOS 中变得非常容易。

如何使用

    [AlertViewBlocks confirmWithTitle:@"Title" message:@"your message here" 
    confirm:^{

        NSLog(@"Ok button selected!");

    } cancel:^{

        NSLog(@"Cancel button selected!");

    }];
    [AlertViewBlocks confirmWithTitle:@"Title" message:@"your message here" 
    YesNo:YES confirm:^{

        NSLog(@"Yes button selected!");

    } cancel:^{

        NSLog(@"No button selected!");

    }];
    [AlertViewBlocks alertWithTitle:@"Title" message:@"you message here" confirm:^(NSInteger index) {

        NSLog(@"Button #%i selected!", index);

    } cancel:^{

        NSLog(@"Cancel button selected!");

    } otherButtonTitles:@"Button 1", @"Button 2", @"Button 3", nil];