DispatchRequirementHomeViewController.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //
  2. // DeliveryRequirementHomeViewController.h
  3. // IBOSSHSH
  4. //
  5. // Created by ssl on 2018/1/12.
  6. // Copyright © 2018年 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "DeliveryUnreceiptListVC.h"
  10. #import "DeliveryReceiptedListVC.h"
  11. #import "PageSwitchView.h"
  12. #import "DispatchRequirementNoReceiptController.h"
  13. #import "DispatchRequirementReceiptController.h"
  14. @interface DispatchRequirementHomeViewController : BaseViewController<UIScrollViewDelegate,UIGestureRecognizerDelegate,FollowUpBrowseProtocol>
  15. /**
  16. 当前索引
  17. */
  18. @property (nonatomic , assign) NSInteger currentIndex;
  19. /**
  20. 未回执button
  21. */
  22. @property (nonatomic,strong) UIButton *deliveryUnreceiptButton;
  23. /**
  24. 已回执button
  25. */
  26. @property (nonatomic,strong) UIButton *deliveryReceiptedButton;
  27. /**
  28. scrollview
  29. */
  30. @property (nonatomic,strong) UIScrollView *mainScrollView;
  31. /**
  32. 滑动块
  33. */
  34. @property (nonatomic,strong) UILabel *sliderLabel;
  35. /**
  36. 配送未回执控制器
  37. */
  38. @property (nonatomic,strong) DispatchRequirementNoReceiptController *deliveryUnreceiptVC;
  39. /**
  40. 配送已回执控制器
  41. */
  42. @property (nonatomic,strong)DispatchRequirementReceiptController *deliveryReceiptVC;
  43. @property (nonatomic,strong) PageSwitchView *page;
  44. @end