我想从iphone应用程序播放pls文件。它的网址是“http://yp.shoutcast.com/sbin/tunein-station.pls?id=4512”,请帮助我如何从iphone应用程序播放此文件。提前谢谢。
答案 0 :(得分:0)
NSString * url = @“http://yp.shoutcast.com/sbin/tunein-station.pls?id=4512”;
if (url != nil)
{
NSURL *movieURL = [NSURL URLWithString:url];
if (movieURL)
{
if ([movieURL scheme]) // sanity check on the URL
{
yourapplicationnameAppDelegate *appDelegate = (yourapplicationnameAppDelegate *)[[UIApplication sharedApplication] delegate];
[appDelegate initAndPlayMovie:movieURL];
}
}
}
您可以在任何您想要的按钮操作上尝试。 并在appdelegate中指定播放器的所有方法。