StatusInfoTextVC.h 742 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // StatusInfoTextVC.h
  3. // IBOSS
  4. //
  5. // Created by apple on 16/1/6.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:状态控制器
  9. //
  10. #import "BaseViewController.h"
  11. @class StatusInfo;
  12. @protocol StatusInfoTextDelegate <NSObject>
  13. @optional
  14. /**
  15. 状态回调函数
  16. @param s <#s description#>
  17. */
  18. - (void)showStatusValue:(StatusInfo*)s ;
  19. @end
  20. @interface StatusInfoTextVC : BaseViewController<StatusInfoTextDelegate>
  21. /**
  22. 数据源
  23. */
  24. @property (nonatomic,strong) NSMutableArray *arrFilter;
  25. /**
  26. 是否是dismissViewController
  27. */
  28. @property (nonatomic,assign) BOOL isPresentViewFlag;
  29. /**
  30. 回调代理
  31. */
  32. @property (nonatomic,weak) id<StatusInfoTextDelegate> sdelegate;
  33. @end