欢迎光临
我们一直在努力

iOS列表选择弹框

建站超值云服务器,限时71元/月

iOS列表选择弹框

项目介绍:

一个简单的列表选择弹窗

用法:
MenuAlertViewController *vc = [[MenuAlertViewController alloc]initWithTitleItems:@[@"家庭套餐", @"社区套餐",@"套餐3"] detailsItems:@[@"2017-10-10", @"2019-10-10"] selectImage:@"select_normal" normalImage:@"select_not"];
    vc.leftBtnTitle = @"取消";
    vc.title = @"我是标题";
    vc.leftTitleColor = [UIColor redColor];
    vc.btnFont = 20;
    vc.leftBtnBgColor = [UIColor grayColor];
    vc.titleFont = 17;
    vc.titleColor = [UIColor redColor];
//    vc.rowTitleFont = 17;
//    vc.rowDetailFont = 12;
//    vc.rowTitleColor = [UIColor redColor];
//    vc.rowDetailColor = [UIColor redColor];
    
    vc.confirmSelectRowBlock = ^(NSInteger index) {
      
        NSLog(@"index: %zd", index);
    };
    
    [self presentViewController:vc animated:false completion:nil];

github地址:https://github.com/soliloquy-local/ListAlertView.git

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » iOS列表选择弹框
分享到: 更多 (0)