Hello,
I am trying to play a video like this
self.webView = [[UIWebView alloc] initWithFrame: CGRectMake(0.0, 0.0, 1.0, 1.0)];
NSURLRequest *request = [[NSURLRequest alloc] initWithURL: urlToMovie];
[self.webView loadRequest: request];
[request release];
could anyone tell me how can i get moviePlayerWindow (UIWindow ) handler if i am playing with the help of safari.
Is there any way to get movie notifications? like did finish loading, finish playing etc.
thank you for your responses :)