程序用来在手机上来切换APN接入点,思路是通过安装描述配置文件来完成这一功能,看了几个别人做的程序,也都是调用safari来进行安装的。myFilePath=[NSString stringWithFormat: @"%@",[[NSBundle mainBundle] bundlePath],@"out.mobileconfig" ];[[UIApplication sharedApplication] openURL:[NSURL URLWithString:myFilePath]];
像这样不能用safari来打开本地上的描述文件,我现在卡在这里不知道怎么解决,网上也找不到资料。