| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- //
- // DeliveryReceiptHomeViewController.h
- // IBOSS
- //
- // Created by guan hong hou on 2017/7/6.
- // Copyright © 2017年 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 功能描述:配送主页控制器
- #import "BaseViewController.h"
- #import "DeliveryUnreceiptListVC.h"
- #import "DeliveryReceiptedListVC.h"
- @interface DeliveryReceiptHomeViewController : BaseViewController<UIScrollViewDelegate,UIGestureRecognizerDelegate>
- /**
- 当前索引
- */
- @property (nonatomic , assign) NSInteger currentIndex;
- /**
- 未回执button
- */
- @property (nonatomic,strong) UIButton *deliveryUnreceiptButton;
- /**
- 已回执button
- */
- @property (nonatomic,strong) UIButton *deliveryReceiptedButton;
- /**
- scrollview
- */
- @property (nonatomic,strong) UIScrollView *mainScrollView;
- /**
- 滑动块
- */
- @property (nonatomic,strong) UILabel *sliderLabel;
- /**
- 配送未回执控制器
- */
- @property (nonatomic,strong) DeliveryUnreceiptListVC *deliveryUnreceiptVC;
- /**
- 配送已回执控制器
- */
- @property (nonatomic,strong)DeliveryReceiptedListVC *deliveryReceiptVC;
- @end
|