Page 1 of 1

Disable UiAlertView notifications

Posted: 13 Apr 2014 21:33
by m3night
Hi,

I want to disable UiAlertView notifications in ios application for example when playing failed.
How can i do that in code ?

thanks

Re: Disable UiAlertView notifications

Posted: 15 Apr 2014 15:11
by fkuehne
Remove "ios_dialog_provider" from the extra-intf list in VLCLibrary.m within VLCKit.

Re: Disable UiAlertView notifications

Posted: 16 Apr 2014 14:54
by m3night
i have added this option to VLCMediaPlayer and notifications gone

_mediaplayer = [[VLCMediaPlayer alloc] initWithOptions:@[[NSString stringWithFormat:@"--%@=%@",@"extraintf",@""]]];

really thanks, it helped me alot