YHExplorerView.h 704 Bytes
//
//  YHExplorerView.h
//  YohoExplorerDemo
//
//  Created by gaoqiang xu on 3/2/15.
//  Copyright (c) 2015 gaoqiang xu. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "YHExplorerViewController.h"

@interface YHExplorerView : UIView
<YHExplorer>

@property (readonly, strong, nonatomic) YHExplorerViewController *webViewController;

/**
 *  网页交互代理
 */
@property (weak, nonatomic) IBOutlet id <YHExplorerDelegate> delegate;
@property (nonatomic) BOOL enableProgressBar;

@property (weak, nonatomic) UIView * currentNaviBar;
- (WKWebView *)webView;

- (instancetype)initWithFrame:(CGRect)frame withNaviBar:(UIView *)naviBar;
/**
 *  移除滚动条
 */
- (void)removeProgress;

@end