// // ReceiveBoltView.h // XFFruit // // Created by 陈俊俊 on 15/10/13. // Copyright (c) 2015年 Xummer. All rights reserved. // #import <UIKit/UIKit.h> @protocol ReceiveBoltViewDelegate <NSObject> - (void)getBoltValueSelectRow:(NSString *)state;
- (void)getBillNumberEqual:(NSString *)billNumber; - (void)getGoodLike:(NSString *)goodLike;
- (void)clearBoltInformation; @end @interface ReceiveBoltView : UIView<UITableViewDataSource,UITableViewDelegate> @property (nonatomic,strong)UITableView *tableView; @property (nonatomic,strong)NSMutableArray *dataArr; @property (nonatomic,weak)id <ReceiveBoltViewDelegate>delegate;
@property (nonatomic,strong)UITextField *billFiled;//单号等于 @property (nonatomic,strong)UITextField *goodFiled;//商品类似于 - (instancetype)initWithFrame:(CGRect)frame state:(NSString *)state billNumber:(NSString *)billNumber goodLike:(NSString *)goodLike;
@end