avplayer is not playing the URL

前端 未结 5 1447
长情又很酷
长情又很酷 2021-02-04 15:00

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 = [         


        
5条回答
  •  一生所求
    2021-02-04 15:36

    I had the same issue and just realized that I wasn't retaining the player (using ARC)! So it gets deallocated and stop playing immediately after start.

    You need to make sure that you have a strong property radioPlayer and use self.radioPlayer instead of radioPlayer.

提交回复
热议问题