I am developing an app for the iPhone, in which I am running a Youtube video on UIwebView.
In that, I want to retrieve all the information about the video (when the video started and how much time it took to complete the video). I am trying to get this information every 2 seconds.
I have not been able to get such notificatons. I have also tried doing that with JavaScript, but I read somewhere that it requires Flash Player and the iPhone doesn't support it. So JavaScript is not an option.
Can anyone suggest me how can I move forward from here? Thanks.
My code:
//
// YouTubeEmbedViewController.m
// YouTubeEmbed
//
// Created by Movik Networks on 11/04/12.
// Copyright 2012 __MyCompanyName__. All rights reserved.
//
#import "YouTubeEmbedViewController.h"
@implementation YouTubeEmbedViewController
@synthesize thumbnailView;
- (void)didReceiveMemoryWarning
{
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
// Release any cached data, images, etc that aren't in use.
}
#pragma mark - View lifecycle
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad
{
[super viewDidLoad];
// webView is a UIWebView, either initialized programmatically or loaded as part of a xib.
NSString *htmlString = @"<html><head><meta name = \"viewport\" content = \"initial-scale = 1.0, user-scalable = no, width = 300\"/></head><body style=\"background:#F00;margin-top:0px;margin-left:0px\"><div><object width=\"300\" height=\"300\"><param name=\"movie\" value=\"http://www.youtube.com/watch?v=oSOooSv1RH0\"></param><param name=\"wmode\" value=\"transparent\"></param><embed src=\"http://www.youtube.com/watch?v=oSOooSv1RH0\"type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"300\" height=\"300\"></embed></object></div></body></html>";
[thumbnailView loadHTMLString:htmlString baseURL:[NSURL URLWithString:@"http://www.google.com"]];
}
- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
// e.g. self.myOutlet = nil;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
@end
