when i load local html file into my iOS app every thing work fine but in the html file there is an animation (images+sounds) the sounds file founded under the folder reference "edge in folder named media " the problem is the animated images work fine but without any sound can any one advice me ?
and there is my code
localContent = [[UIWebView alloc] initWithFrame:CGRectMake(0, 60, 1024, 768)];
NSString *path = [[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"inDirectory:@"Edge"];
NSURL *url = [NSURL fileURLWithPath:path];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[localContent loadRequest:request];
[self.view addSubview: localContent];