我尝试使用 webView 在我的应用程序中构建收音机。但是在加载链接时,我的应用程序每次都会崩溃。
- (IBAction)playMusic:(id)sender {
NSString *stream = @"http://www.bbc.co.uk/radio/listen/live/r2.pls"; //just an example link
NSURL *url = [NSURL URLWithString:stream];
NSURLRequest *urlrequest = [NSURLRequest requestWithURL:url];
[Webview loadRequest:urlrequest];
}
...但是通过页面链接(如 www.google.com)一切正常。也许还有比使用 webView 播放广播更好的解决方案。提前感谢大家