还记得当年去面试被面试官吊打的情形,只有下图能够表达我的心声
进入正题:当时提问的是,两个独立的APP之间数据的传递或者互相访问,而我当时脑子里面立刻反应就是界面之间数据传递、代理、block、单列类似的东西现在想想真是自以为答得很溜,然而都是浮云☁️**面试官主要想考察的就是URL Schemes **
什么是URL Schemes?
URL Schemes是苹果给出的用来跳转到系统应用或者跳转到别人的应用的一种机制(相当于一个app的标识,可以有多个)。同时还可以在应用之间传数据。
【跳转到别人的应用】
下面就新建2个工程设置对应的URL S chemes:
1.第一个工程info.plist设置
2.第二个工程info.plist设置
- 完成前两部之后,跳转代码
在SecondApp中监听传过来的参数
反之, SecondApp--->FirstApp同理
【扩展跳转到系统应用】
IOS8以后苹果官方提供了一个新的API参数供我们方便的从APP跳转到系统设置主页面 :UIApplicationOpenSettingsURLString
使用方法如下:
//跳转到设置主页面
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];
在iOS10更新后,系统设置跳转被禁用,只能跳转App设置? NO, NO, NO, 看这里,又可以换个姿势愉快的跳转啦。
其实方法很简单,例如原有【ios之前】跳转Wi-Fi设置是"prefs:root=WIFI",新的写法是"App-Prefs:root=WIFI"。怎么样,是不是很简单!!!
在非iOS10手机中,也可以用此方法进行跳转,但不保证跳转正确性
非iOS10系统跳转,可以参考[这里(未测试)](http://www.jianshu.com/p/32ca4bcda3d1)。
Objective-c
#define iOS10 ([[UIDevice currentDevice].systemVersion doubleValue] >= 10.0)NSString * urlString = @"App-Prefs:root=WIFI";if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:urlString]]) { if (iOS10) { [[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlString] options:@{} completionHandler:nil]; } else { [[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlString]]; }}
Swift
if let url = URL(string:"App-Prefs:root=WIFI") { if #available(iOS 10.0, *) { UIApplication.shared.open(url, options: [:], completionHandler: nil) } else { UIApplication.shared.openURL(url) }}
当前iOS10支持的所有跳转,亲测可用(测试系统:10.2.1)
跳转
写法
无线局域网
App-Prefs:root=WIFI
蓝牙
App-Prefs:root=Bluetooth
蜂窝移动网络
App-Prefs:root=MOBILE_DATA_SETTINGS_ID
个人热点
App-Prefs:root=INTERNET_TETHERING
运营商
App-Prefs:root=Carrier
通知
App-Prefs:root=NOTIFICATIONS_ID
通用
App-Prefs:root=General
通用-关于本机
App-Prefs:root=General&path=About
通用-键盘
App-Prefs:root=General&path=Keyboard
通用-辅助功能
App-Prefs:root=General&path=ACCESSIBILITY
通用-语言与地区
App-Prefs:root=General&path=INTERNATIONAL
通用-还原
App-Prefs:root=Reset
墙纸
App-Prefs:root=Wallpaper
Siri
App-Prefs:root=SIRI
隐私
App-Prefs:root=Privacy
Safari
App-Prefs:root=SAFARI
音乐
App-Prefs:root=MUSIC
音乐-均衡器
App-Prefs:root=MUSIC&path=com.apple.Music:EQ
照片与相机
App-Prefs:root=Photos
FaceTime
App-Prefs:root=FACETIME