SoAlertControl 1.0.1

SoAlertControl 1.0.1

测试已测试
语言 Obj-CObjective C
许可 未知
发布最后发布2018年6月

lingaoo 维护。



  • lingaoo

SoAlertControl

继承SoAlertView 自定义MyAlertView

    MyAlertView *myalert = [MyAlertView alertViewWithTitle:@"TITLE" Message:@"MESSAGE"];
    
    [myalert addButtonTitle:@"Cancel" click:^(SoAlertView *alertView, UIButton *button) {
        NSLog(@"%@",button);
        [alertView dismiss];
    }];
    
    [myalert show];