CustomReceiptHomeViewController.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. // CustomNoReceiptViewController.h
  2. // IOBSS 2.0
  3. //
  4. // Created by 刘瀚璘 on 2017.7.14
  5. // Copyright 2017 沈阳东科云信软件有限公司. All rights reserved.
  6. //
  7. // 系统名称:
  8. // 功能描述:定制品回执页面
  9. #import "BaseViewController.h"
  10. #import "CustomNoReceiptViewController.h"
  11. #import "CustomReceiptViewController.h"
  12. @interface CustomReceiptHomeViewController : BaseViewController <UIScrollViewDelegate,UIGestureRecognizerDelegate>
  13. /**
  14. scrollView
  15. */
  16. @property (nonatomic,strong) UIScrollView *mainScrollView;
  17. /**
  18. 当前索引
  19. */
  20. @property (nonatomic , assign) NSInteger currentIndex;
  21. /**
  22. 未回执
  23. */
  24. @property (nonatomic,strong) UIButton *noReceiptBtn;
  25. /**
  26. 已回执
  27. */
  28. @property (nonatomic,strong) UIButton *receiptBtn;
  29. /**
  30. 回执label
  31. */
  32. @property (nonatomic,strong) UILabel *sliderLabel;
  33. /**
  34. 未回执Controller
  35. */
  36. @property (nonatomic,strong) CustomNoReceiptViewController *noReceiptVC;
  37. /**
  38. 已回执Controller
  39. */
  40. @property (nonatomic,strong) CustomReceiptViewController *receiptVC;
  41. @end