如何使用IP在iPhone上显示实时视频流?

时间:2013-08-29 11:19:38

标签: iphone uiwebview video-streaming mpmovieplayer

这是IP地址“http://64.xxxxx/pda.htm

当我登录浏览器时,它会要求我输入用户名。然后它才能正常工作。

这就是我在iPhone上所拥有的,有人可以帮助我。

self.myWebView = [[UIWebView alloc] initWithFrame:webFrame];

self.myWebView.backgroundColor = [UIColor whiteColor];
self.myWebView.scalesPageToFit = YES;
self.myWebView.delegate = self;
[self.view addSubview:self.myWebView];

NSURLRequest* r = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://64.183.101.142:81/pda.htm"] cachePolicy:nil timeoutInterval:20];

[self.myWebView loadRequest:r];

0 个答案:

没有答案