效果圖如下:
yyy.png
調用方法很簡單:
- (void)viewDidLoad {
[super viewDidLoad];
NSArray *titlesArr = @[@[@"綜合排序",@"新品優先",@"評論數從高到低"],
@[@"品牌",@"國內品牌",@"國際品牌"],
@[@"顏色",@"黑色",@"黃色",@"白色",@"藍色"]];
XMDropDownChooseView *chooseView = [[XMDropDownChooseView alloc]initWithFrame:CGRectMake(0, 64, self.view.bounds.size.width, 40) dataArr:titlesArr delegate:self];
chooseView.titleColor = [UIColor redColor];
[self.view addSubview:chooseView];
}
-(void)choosedAtSection:(NSInteger)section index:(NSInteger)index
{
NSLog(@"section:%lu------index:%lu",section,index);
}