Audioplayer解析数据

时间:2015-04-02 10:31:00

标签: ios

我正试图在json解析的帮助下制作一个在线音频播放器。数据即将到来但是当我将值传递给音频播放器时,它就不会播放歌曲了。 我的代码如下:

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSString *strr=[tabledata objectAtIndex:indexPath.row];
//table data is mutable array which has all the links to top ten songs
    NSURL *url=[NSURL URLWithString:strr];

    _ap=[[AVAudioPlayer alloc]initWithContentsOfURL:url error:nil];

    [_ap play];

}

1 个答案:

答案 0 :(得分:0)

你可以找到它的示例代码

Sample program 1