Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/woip/app/WebKitView.h
blob: d038578541f36722fb006344cd67de48623a6566 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#import <UIKit/UIKit.h>
#import <UIKit/UIScroller.h>
#import <UIKit/UIWebView.h>

@interface WebKitView : UIScroller {
	UIWebView *webView;
  UIScroller *scroller; 
}

-(id)initWithFrame: (CGRect)frame;
-(void)loadURL: (NSURL *)url;
-(void)dealloc;
-(void)loadString: (NSString *)str;

@end