12345678910111213141516171819202122 |
- //
- // HmvBase.h
- // jiaPei
- //
- // Created by EchoShacolee on 2017/12/9.
- // Copyright © 2017年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #define VAWBAR_H 150
- #define SCRV_BottomH 0
- @interface HmvBase : UIViewController <JXPagerViewListViewDelegate>
- {
-
- UIScrollView* scroll;
- }
- @property(nonatomic,strong)UIScrollView *zzScrollV;
- @property(nonatomic,assign)CGFloat viewH;
- @property (nonatomic, readwrite, copy) void(^scrollCallback)(UIScrollView *scrollView);
- @end
|