mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-04-25 20:35:16 -06:00
15 lines
346 B
Objective-C
15 lines
346 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@interface Webview : UIView <UIWebViewDelegate> {
|
|
UIActivityIndicatorView *activityView_;
|
|
UIButton *backButton_;
|
|
UIButton *forwardButton_;
|
|
NSString *url_;
|
|
NSString *title_;
|
|
UIToolbar *toolbar_;
|
|
UIWebView *contentView_;
|
|
}
|
|
|
|
- (void)loadDocument:(NSString *)url withTitle:(NSString *)title;
|
|
@end
|