I'm doing a itunes plugin with a browser, but I'm having problems to show a default home page. Can anyone help me? My two main functions to load the url:
- (void) load{
[urlString setStringValue:defaultHP];
[[webView mainFrame] loadRequest:
[NSURLRequest requestWithURL:
[NSURL URLWithString:defaultHP]]];
}
- (void) newWindow{
if (![NSBundle loadNibNamed:@"Plugin" owner:self]) {
NSLog(@"Error loading Nib for document!");
} else {
/*[webView setUIDelegate:self];
[webView setGroupName:@"Plugin"];*/
[self load];
}
}