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