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

#import <UIKit/UIKit.h>

@protocol BoltMaskViewDelegate <NSObject>
- (void)getBoltValueSelectRow:(NSString *)state;
陈俊俊's avatar
陈俊俊 committed
13 14
- (void)getTitleLike:(NSString *)titleLike;
- (void)getBillNumber:(NSString *)billNumber;
n22's avatar
n22 committed
15
- (void)clearBoltInformation;
陈俊俊's avatar
陈俊俊 committed
16 17 18 19 20 21 22 23
@end


@interface BoltMaskView : UIView<UITableViewDataSource,UITableViewDelegate>
@property (nonatomic,strong)UITableView *tableView;
@property (nonatomic,strong)NSMutableArray *dataArr;
@property (nonatomic,weak)id <BoltMaskViewDelegate>delegate;

n22's avatar
n22 committed
24 25 26
@property (nonatomic,strong)UITextField *titleFiled;
@property (nonatomic,strong)UITextField *billFiled;

陈俊俊's avatar
陈俊俊 committed
27 28
- (instancetype)initWithFrame:(CGRect)frame state:(NSString *)state title:(NSString *)title bill:(NSString *)bill;

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