| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- // CustomNoReceiptViewController.h
- // IOBSS 2.0
- //
- // Created by 刘瀚璘 on 2017.7.14
- // Copyright 2017 沈阳东科云信软件有限公司. All rights reserved.
- //
- // 系统名称:
- // 功能描述:定制品回执页面
- #import "BaseViewController.h"
- #import "CustomNoReceiptViewController.h"
- #import "CustomReceiptViewController.h"
- @interface CustomReceiptHomeViewController : BaseViewController <UIScrollViewDelegate,UIGestureRecognizerDelegate>
- /**
- scrollView
- */
- @property (nonatomic,strong) UIScrollView *mainScrollView;
- /**
- 当前索引
- */
- @property (nonatomic , assign) NSInteger currentIndex;
- /**
- 未回执
- */
- @property (nonatomic,strong) UIButton *noReceiptBtn;
- /**
- 已回执
- */
- @property (nonatomic,strong) UIButton *receiptBtn;
- /**
- 回执label
- */
- @property (nonatomic,strong) UILabel *sliderLabel;
- /**
- 未回执Controller
- */
- @property (nonatomic,strong) CustomNoReceiptViewController *noReceiptVC;
- /**
- 已回执Controller
- */
- @property (nonatomic,strong) CustomReceiptViewController *receiptVC;
- @end
|