国行iPhone在iOS10后应工信部要求新增加网络请求权限,这是国行手机独有的权限,用户在第一次安装APP时会提示用户是否允许APP使用网络权限;
如果APP在授权期间请求网络的话会请求失败,不幸的是Apple并未提供具体的API供开发者处理授权期间的网路请求;
这就导致用户在第一次安装后授权结束后可能会出现很多依赖于didFinishLaunchingWithOptions的操作初始化失败,比如首页网络请求、SDK初始化失败等;
本文提供一种我觉得合适的处理方式:网络状态变更通知
大体思路是通过Reachability来监听APP的网络状态,在网络可用时及时reconnect
框架:Reachability
//网络状态监控
func setUpNetworkNoti() {
/// 2、实时监听网络链接状态
hostReachability?.whenReachable = { reachability in
NotificationCenter.default.post(name: NSNotification.Name.connected, object: nil)
if reachability.connection == .wifi {
/// TODO……
guard let lastStatus = UserDefaults.standard.value(forKey: kNetworkStatus) else {
return
}
if !(lastStatus as! Bool) {
UserDefaults.standard.set(true, forKey: kNetworkStatus)
NotificationCenter.default.post(name: NSNotification.Name.connected, object: nil)
}
} else if reachability.connection == .cellular {
/// TODO……
guard let lastStatus = UserDefaults.standard.value(forKey: kNetworkStatus) else {
return
}
if !(lastStatus as! Bool) {
UserDefaults.standard.set(true, forKey: kNetworkStatus)
NotificationCenter.default.post(name: NSNotification.Name.connected, object: nil)
}
} else {
UserDefaults.standard.set(false, forKey: kNetworkStatus)
NotificationCenter.default.post(name: NSNotification.Name.unreachable, object: nil)
/// TODO……
}
}
hostReachability?.whenUnreachable = { _ in
UserDefaults.standard.set(false, forKey: kNetworkStatus)
NotificationCenter.default.post(name: NSNotification.Name.unreachable, object: nil)
/// TODO……
}
do {
try hostReachability?.startNotifier()
} catch {
/// print("Unable to start notifier")
}
}
当网络通畅时会执行hostReachability?.whenReachable闭包,可以在didFinishLaunchingWithOptions中将需要初始化的操作或者网络请求放在whenReachable闭包中;
切记:whenReachable闭包在网络通畅时didFinishLaunchingWithOptions执行时并不会执行,只有在网络变化时才会执行,所以,需要在闭包外部同样执行初始化操作或者网络请求