KWMWebViewVC.h 477 Bytes
Newer Older
houweibin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
//
//  KWMWebViewVC.h
//  iToYoung
//
//  Created by jason on 16/5/18.
//  Copyright © 2016年 Kollway. All rights reserved.
//

#import "KWMBaseVC.h"

@interface KWMWebViewVC : KWMBaseVC<UIWebViewDelegate>

+(NSString *)pushWebUrl:(NSString *)pushId;

@property(nonatomic,weak) IBOutlet UIWebView *wbView;
@property(nonatomic,weak) IBOutlet UIActivityIndicatorView *indicatorView;

@property(nonatomic) NSString *titleName;
@property(nonatomic) NSString *detailPath;



@end