ios隐藏来自第三方框架/库的警报

时间:2016-08-12 06:01:47

标签: ios objective-c iphone xcode ipad

我在ios应用程序中使用第三方库。我有一个编译文件,即".a"文件和给我的头文件".h" ..

此处的解决方案In Xcode, how to suppress all warnings in specific source files?介绍了如何点击源文件的编译器标志并设置-w。这与我相信的警报没有任何关系。 另外,我没有源文件..

所以我的问题是,如何从第三方库中删除/隐藏/禁用UIAlertView或UIAlertController?

有没有办法在info.plistAppDelegate.mXcode中的任何位置设置一些值?

1 个答案:

答案 0 :(得分:0)

对于那些使用libMobileVLCKit作为第三方框架的人,使用此

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

而不是:

 _mediaplayer = [[VLCMediaPlayer alloc] init];

它不会显示您的VLC警报,其中包括:

"Your input can't be opened:
VLC is unable to open the MRL 'file:///somefile.mp4'. Check the log for details."