UIWebview open itunes store links example
My application works fine.
But for some reason my application does not open itunes store links.
in my index.html I have a link (target="_blank" to the itunes store.
this is my mainview.h , can somebody please help me ? I'm struggling for days now
#import "MainView.h"
@implementation MainView
- (void)awakeFromNib {
NSString *path = [[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"];
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath: path]]];
}
@end
|