How to disable VLCMediaPlayer error AlertView?

前端 未结 3 1128
走了就别回头了
走了就别回头了 2020-12-18 12:35

I am using VLCMediaPlayer class from the MobileVLCKit library to make an audio streaming application. My problem is that when error happens (e.g. incorrect stream url) it au

3条回答
  •  情话喂你
    2020-12-18 13:21

    I solved this by going to VLCLibrary.m in the VLC source code, and removing this line:

    @"--extraintf=ios_dialog_provider"];
    

    from the _defaultOptions call.

    remove it, compile again the library, and you wont see any more messages.

提交回复
热议问题