IBTWebViewController.h 491 Bytes
Newer Older
mei's avatar
mei committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
//
//  IBTWebViewController.h
//  IBTWebViewController
//
//  Created by Xummer on 14/12/29.
//  Copyright (c) 2014年 Xummer. All rights reserved.
//

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

@protocol IBTWebViewDelegate;
@interface IBTWebViewController : ICRBaseViewController

@property (weak, nonatomic) id<IBTWebViewDelegate> m_delegate;

- (id)initWithURL:(id)url presentModal:(BOOL)modal extraInfo:(NSDictionary *)info;

- (void)setAutoSetTitle:(BOOL)bAutoSet;

@end