// // StatusInfoTextVC.h // IBOSS // // Created by apple on 16/1/6. // Copyright © 2016年 elongtian. All rights reserved. // #import "BaseViewController.h" @class StatusInfo; @protocol StatusInfoTextDelegate @optional /** 状态回调函数 @param s <#s description#> */ -(void)showStatusValue:(StatusInfo*)s ; @end @interface StatusInfoTextVC : BaseViewController @property(strong) NSMutableArray *searchArr; @property(strong) NSMutableArray *filterArr; @property(assign,nonatomic) BOOL isPresentViewFlag; @property(nonatomic,weak) id sdelegate; @end