我在ios应用程序中使用第三方库。我有一个编译文件,即".a"
文件和给我的头文件".h"
..
此处的解决方案In Xcode, how to suppress all warnings in specific source files?介绍了如何点击源文件的编译器标志并设置-w
。这与我相信的警报没有任何关系。
另外,我没有源文件..
所以我的问题是,如何从第三方库中删除/隐藏/禁用UIAlertView或UIAlertController?
有没有办法在info.plist
或AppDelegate.m
或Xcode
中的任何位置设置一些值?
答案 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."