BWSelectViewController 0.4.3

BWSelectViewController 0.4.3

测试已测试
Lang语言 Obj-CObjective C
许可证 自定义
发布上次发布2016年11月

未归属 维护。



  • Bruno Wernimont

控制器,用于显示可选择的项列表。

Screenshot

安装

复制 BWSelectViewController 目录到您的项目中。

或者用 Cocoapods

pod 'BWSelectViewController', :git => "https://github.com/brunow/BWSelectViewController.git", :tag => "0.4.3"

如何使用

BWSelectViewController *vc = [[BWSelectViewController alloc] init];
vc.items = [NSArray arrayWithObjects:@"Item1", @"Item2", @"Item3", @"Item4", nil];
vc.multiSelection = NO;
vc.allowEmpty = YES;

[vc setDidSelectBlock:^(NSArray *selectedIndexPaths, BWSelectViewController *controller) {
    NSLog(@"%@", selectedIndexPaths);
}];

[self.navigationController pushViewController:vc animated:YES];

ARC

BWSelectViewController 仅支持 ARC。