1234567891011121314151617181920212223 |
- //
- // HSQWebPageViewController.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/1/31.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "HSQBaseViewController.h"
- typedef NS_ENUM(NSUInteger, AlibcOpenPage) {
- /** 打开购物车 */
- AlibcOpenPageShopCar,
- /** 打开我的订单 */
- AlibcOpenPageMyOrder,
- };
- @interface HSQWebPageViewController : HSQBaseViewController
- @property (nonatomic, assign) AlibcOpenPage openPage;
- @property (nonatomic, strong) UIWebView *webView;
- - (void)updateNavigationBarButtons;
- @end
|