// // ReceiveBoltView.h // XFFruit // // Created by 陈俊俊 on 15/10/13. // Copyright (c) 2015年 Xummer. All rights reserved. // #import @protocol ReceiveBoltViewDelegate - (void)getBoltValueSelectRow:(NSString *)state; - (void)clearBoltInformation; @end @interface ReceiveBoltView : UIView @property (nonatomic,strong)UITableView *tableView; @property (nonatomic,strong)NSMutableArray *dataArr; @property (nonatomic,weak)id delegate; - (instancetype)initWithFrame:(CGRect)frame state:(NSString *)state; @end