StatusInfoTextVC.h 625 B

12345678910111213141516171819202122232425262728
  1. //
  2. // StatusInfoTextVC.h
  3. // IBOSS
  4. //
  5. // Created by apple on 16/1/6.
  6. // Copyright © 2016年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. @class StatusInfo;
  10. @protocol StatusInfoTextDelegate <NSObject>
  11. @optional
  12. /**
  13. 状态回调函数
  14. @param s <#s description#>
  15. */
  16. -(void)showStatusValue:(StatusInfo*)s ;
  17. @end
  18. @interface StatusInfoTextVC : BaseViewController<StatusInfoTextDelegate>
  19. @property(strong) NSMutableArray *searchArr;
  20. @property(strong) NSMutableArray *filterArr;
  21. @property(assign,nonatomic) BOOL isPresentViewFlag;
  22. @property(nonatomic,weak) id<StatusInfoTextDelegate> sdelegate;
  23. @end