MyWebViewController.h 589 B

123456789101112131415161718192021222324
  1. //
  2. // MyWebViewController.h
  3. // TabBar
  4. //
  5. // Created by 黄玉林 on 15/5/19.
  6. // Copyright (c) 2015年 黄玉林. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface MyWebViewController : UIViewController<UIWebViewDelegate,UITabBarDelegate>
  10. {
  11. UITabBar* tabBar;
  12. }
  13. @property (strong, nonatomic) IBOutlet UIWebView *webView;
  14. @property (nonatomic,strong) NSString *userName;
  15. @property (nonatomic,strong) NSString *linkUrl;
  16. @property (nonatomic,strong) NSString *master;
  17. @property BOOL isNoERP;
  18. @property (nonatomic,strong) NSString *sessionId;
  19. @property BOOL isPushGo;
  20. @end