YHExplorerView.h 800 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>
/**
 *  网页交互代理(包含UIWebView的代理)
 */
@property (weak, nonatomic) IBOutlet id <YHExplorerDelegate> delegate;
@property (nonatomic) BOOL enableProgressBar;
/*
 * Explorer的tap手势  默认NO
 * 开启后可以处理图片点击事件
 */
@property (nonatomic) BOOL enablePictureTapGesture;
@property (weak, nonatomic) UINavigationBar * currentNaviBar;
- (UIWebView *)webView;

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

@end