摘要:
在应用程序内使用SDK打开设置(转)备注:该功能只能在5.0及以下才能使用,5.1及以上该接口失效。//网路设置项[[UIApplicationsharedApplication]openURL:[NSURLURLWithString:@"prefs:root=General&path=Network"]]; //定位设置[NSURL URLWithString:@"prefs:root=LOCATION_SERVICES"]];//设置Twitter[NSURL URLWithString:@"prefs:root=TWITTER&q 阅读全文
摘要:
1、mac中快速切换至桌面mac中按快捷键F11即可快速切换至桌面2、强制关闭进程按Windows+Alt+Esc键即可调起想windows类似的任务管理器3、显示Library目录~/Library目录默认是隐藏的,如下方式可以显示:chflags nohidden ~/Library // 显示chflags hidden ~/library // 隐藏 阅读全文
摘要:
【问题描述】需要应用A调起应用B【问题分析】1、B需要在**-Info.plist中增加参数,如下图:2、应用A添加如下代码:NSURL *url = [NSURL URLWithString:@"myapp:"];[[UIApplication sharedApplication] openURL:url]; 阅读全文