| 123456789101112131415161718192021222324 |
- //
- // MyWebViewController.h
- // TabBar
- //
- // Created by 黄玉林 on 15/5/19.
- // Copyright (c) 2015年 黄玉林. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface MyWebViewController : UIViewController<UIWebViewDelegate,UITabBarDelegate>
- {
- UITabBar* tabBar;
- }
- @property (strong, nonatomic) IBOutlet UIWebView *webView;
- @property (nonatomic,strong) NSString *userName;
- @property (nonatomic,strong) NSString *linkUrl;
- @property (nonatomic,strong) NSString *master;
- @property BOOL isNoERP;
- @property (nonatomic,strong) NSString *sessionId;
- @property BOOL isPushGo;
- @end
|