-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathEasyJSWebView.m
63 lines (51 loc) · 1.13 KB
/
EasyJSWebView.m
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//
// EasyJSWebView.m
// EasyJS
//
// Created by Lau Alex on 19/1/13.
// Copyright (c) 2013 Dukeland. All rights reserved.
//
#import "EasyJSWebView.h"
@implementation EasyJSWebView
@synthesize proxyDelegate;
- (id)initWithFrame:(CGRect)frame{
self = [super initWithFrame:frame];
if (self) {
[self initEasyJS];
}
return self;
}
- (id)init{
self = [super init];
if (self) {
[self initEasyJS];
}
return self;
}
- (id)initWithCoder:(NSCoder *)aDecoder{
self = [super initWithCoder:aDecoder];
if (self){
[self initEasyJS];
}
return self;
}
- (void) initEasyJS{
self.proxyDelegate = [[EasyJSWebViewProxyDelegate alloc] init];
self.delegate = self.proxyDelegate;
}
- (void) setDelegate:(id<UIWebViewDelegate>)delegate{
if (delegate != self.proxyDelegate){
self.proxyDelegate.realDelegate = delegate;
}else{
[super setDelegate:delegate];
}
}
- (void) addJavascriptInterfaces:(NSObject*) interface WithName:(NSString*) name{
[self.proxyDelegate addJavascriptInterfaces:interface WithName:name];
}
- (void) dealloc{
[super dealloc];
[self.proxyDelegate release];
self.proxyDelegate = nil;
}
@end