views:

95

answers:

1
-(void)viewDidLoad {

    [webView loadRequest:(NSURLRequest) requestWithURL:[NSURL URLWithString:@"http://itunes.apple.com/ca/album/zirka-live/id352921457"]];]; 

}
+2  A: 
[webView loadRequest:(NSURLRequest) requestWithURL:[NSURL
    URLWithString:@"http://itunes.apple.com/..."]];];

should be

[webView loadRequest:[NSURLRequest requestWithURL:[NSURL
    URLWithString:@"http://itunes.apple.com/..."]]];

that is

 (NSURLRequest) => [NSURLRequest
 ];]; => ]];
drawnonward