DeliveryReceiptHomeViewController.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // DeliveryReceiptHomeViewController.h
  3. // IBOSS
  4. //
  5. // Created by guan hong hou on 2017/7/6.
  6. // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
  7. //
  8. // 功能描述:配送主页控制器
  9. #import "BaseViewController.h"
  10. #import "DeliveryUnreceiptListVC.h"
  11. #import "DeliveryReceiptedListVC.h"
  12. @interface DeliveryReceiptHomeViewController : BaseViewController<UIScrollViewDelegate,UIGestureRecognizerDelegate>
  13. /**
  14. 当前索引
  15. */
  16. @property (nonatomic , assign) NSInteger currentIndex;
  17. /**
  18. 未回执button
  19. */
  20. @property (nonatomic,strong) UIButton *deliveryUnreceiptButton;
  21. /**
  22. 已回执button
  23. */
  24. @property (nonatomic,strong) UIButton *deliveryReceiptedButton;
  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) DeliveryUnreceiptListVC *deliveryUnreceiptVC;
  37. /**
  38. 配送已回执控制器
  39. */
  40. @property (nonatomic,strong)DeliveryReceiptedListVC *deliveryReceiptVC;
  41. @end