// // SortMaskView.h // XFFurit // // Created by 陈俊俊 on 15/8/1. // Copyright (c) 2015年 Xummer. All rights reserved. // #import @protocol SortMaskViewDelegate - (void)getSortValueSelectRow:(NSString *)state; @end @interface SortMaskView : UIView - (instancetype)initWithFrame:(CGRect)frame withOrderDirection:(NSString *)orderDirection; @property (nonatomic,strong)UITableView *tableView; @property (nonatomic,strong)NSMutableArray *dataArr; @property (nonatomic,weak)id delegate; @end