@interface _1_17UIViewViewController : UIViewController {
UIWebView *webView;
}
@property (nonatomic,retain) IBOutlet UIWebView *webView;
@synthesize webView;
- (void)viewDidLoad {
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.google.com.hk"]]];
[super viewDidLoad];
}
- (void)dealloc {
[webView release];
[super dealloc];
}