SortMaskView.h 594 Bytes
Newer Older
陈俊俊's avatar
陈俊俊 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//
//  SortMaskView.h
//  XFFurit
//
//  Created by 陈俊俊 on 15/8/1.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import <UIKit/UIKit.h>

@protocol SortMaskViewDelegate <NSObject>
- (void)getSortValueSelectRow:(NSString *)state;
@end

@interface SortMaskView : UIView<UITableViewDataSource,UITableViewDelegate>
陈俊俊's avatar
陈俊俊 committed
16 17
- (instancetype)initWithFrame:(CGRect)frame withOrderDirection:(NSString *)orderDirection;

陈俊俊's avatar
陈俊俊 committed
18 19 20
@property (nonatomic,strong)UITableView *tableView;
@property (nonatomic,strong)NSMutableArray *dataArr;
@property (nonatomic,weak)id <SortMaskViewDelegate>delegate;
陈俊俊's avatar
陈俊俊 committed
21

陈俊俊's avatar
陈俊俊 committed
22
@end