问题描述
|
我将MP3播客流加载到UIWebView中,如下所示:
- (void)viewDidLoad
{
[super viewDidLoad];
NSMutableuRLRequest *request = [[NSMutableuRLRequest alloc] initWithURL: [NSURL URLWithString:@\"http://localhost/podcasts/downloader/download.mp3?af=a&f=10109\"]];
[webView loadRequest:request];
}
流似乎已加载,然后出现一个UIAlert:
An error occurred while exchanging data. \"Plug-in handled load\"
并且在流在QuickTime中正确加载并播放后立即播放。为什么会出现此警报?
我不想使用AVAudioPlayer播放流,而是使用QuickTime。
解决方法
如果您使用的是iOS,则URL指向localhost,并且设备上可能没有Web服务器。
,您可以忽略该错误。让您知道quicktime正在处理负载。
//Playing audio gives error that says plug-in handled load
if([error.domain isEqualToString:@\"WebKitErrorDomain\"] && error.code == 204)
{
// Ignore it
}