InstallReceiptHomeViewController.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // InstallReceiptHomeViewController.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2017/7/10.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:安装回执主页视图控制器
  9. #import "BaseViewController.h"
  10. #import "InstallUnreceiptVC.h"
  11. #import "InstallReceiptedVC.h"
  12. @interface InstallReceiptHomeViewController : BaseViewController<UIScrollViewDelegate,UIGestureRecognizerDelegate>
  13. /**
  14. 当前索引
  15. */
  16. @property (nonatomic , assign) NSInteger currentIndex;
  17. /**
  18. 安装未回执按钮
  19. */
  20. @property (nonatomic,strong) UIButton *installUnreceiptButton;
  21. /**
  22. 安装已回执按钮
  23. */
  24. @property (nonatomic,strong) UIButton *installReceiptedButton;
  25. /**
  26. scrollview
  27. */
  28. @property (nonatomic,strong) UIScrollView *mainScrollView;
  29. /**
  30. 滑动块
  31. */
  32. @property (nonatomic,strong) UILabel *sliderLabel;
  33. /**
  34. 安装未回执控制器
  35. */
  36. @property (nonatomic,strong) InstallUnreceiptVC *installUnreceiptVC;
  37. /**
  38. 安装已回执控制器
  39. */
  40. @property (nonatomic,strong)InstallReceiptedVC *installReceiptVC;
  41. @end