NSURLConnection finished with error - code -1002

后端 未结 3 1917
无人及你
无人及你 2021-02-07 01:27

Friends i have simple audio player (MPMoviePlayerController) which can play audio stream. On iOS 11 i have very interessing trouble, thousand time i have error and my stream was

3条回答
  •  后悔当初
    2021-02-07 01:45

    This issue can appear if your URL contains spaces. I solved it by replacing the spaces with "%20", and then you can use it safely. The Objective C code to replace the spaces is below.

    your_url_variable_name = [your_url_variable_name stringByReplacingOccurrencesOfString:@" " withString:@"%20"];
    

提交回复
热议问题