hostile-takeover/game/sdl/ios/webview.h
2016-08-24 16:42:47 -04:00

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