I am using avplayer for play audio url, but it is not working, I don\'t know where i am wrong
NSString *radioURL = @\"https://www.example.com\";
radioPlayer = [
Make Sure URL is AddingPercentEscapes
.
NSURL *audioURL = // Your Url;
NSString *encodedString = [@"Your Url" stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSURL *myURL = [[NSURL alloc] initWithString:encodedString]
AVPlayer *player = [AVPlayer playerWithURL:myURL];
[player prepareToPlay];
player play];