forked from newyankeecodeshop/GAJavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDetailViewController.h
More file actions
34 lines (25 loc) · 914 Bytes
/
DetailViewController.h
File metadata and controls
34 lines (25 loc) · 914 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
// DetailViewController.h
// WebView Explorer
//
// Created by Andrew Goodale on 6/5/11.
// Copyright 2011 Wingspan Technology, Inc. All rights reserved.
//
#import <UIKit/UIKit.h>
@class GAScriptEngine;
@class RootViewController;
@interface DetailViewController : UIViewController
<UIPopoverControllerDelegate, UISplitViewControllerDelegate, UITextFieldDelegate, UIWebViewDelegate>
{
UITextField* _urlField;
UIWebView* _webView;
GAScriptEngine* _scriptEngine;
RootViewController* _rootController;
}
@property (nonatomic, retain) IBOutlet UIToolbar * toolbar;
@property (nonatomic, retain) IBOutlet UITextField* urlField;
@property (nonatomic, retain) IBOutlet UIWebView* webView;
@property (nonatomic, retain) GAScriptEngine* scriptEngine;
@property (nonatomic, assign) RootViewController * rootController;
- (IBAction)invokeJavaScript:(id)sender;
@end