我使用FireBase SDK作为我应用的后端,并根据需要启用了持久性。
[FIRDatabase database].persistenceEnabled = YES;
离线模式运行良好,直到最近我在离线模式下使用我的应用时才开始出现此错误。
2017-01-08 19:03:44.838 MyApp[1002] <Error> [Firebase/Core][I-COR000020] Error posting to Clearcut: Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline." UserInfo={NSUnderlyingError=0x170056710 {Error Domain=kCFErrorDomainCFNetwork Code=-1009 "(null)" UserInfo={_kCFStreamErrorCodeKey=50, _kCFStreamErrorDomainKey=1}}, NSErrorFailingURLStringKey=https://play.googleapis.com/log, NSErrorFailingURLKey=https://play.googleapis.com/log, _kCFStreamErrorDomainKey=1, _kCFStreamErrorCodeKey=50, NSLocalizedDescription=The Internet connection appears to be offline.}, with Status Code: 0
这很容易重现。只需在iPhone上的飞行模式之间切换即可看到此错误。
我使用CocoaPods来使用FireBase,这里是框架列表及其版本。
-> Using Firebase (3.11.0)
-> Using FirebaseAnalytics (3.6.0)
-> Using FirebaseAuth (3.1.0)
-> Using FirebaseCore (3.4.6)
-> Using FirebaseDatabase (3.1.1)
-> Using FirebaseInstanceID (1.0.8)
答案 0 :(得分:0)
我无法修复firebase代码,但是我能够将其包装在异常处理中,以防止它在设备上的Internet连接关闭时崩溃我的应用程序(特别是在iPad2上)。
目标C
@try {
[FIRAnalytics logEventWithName:@"share" parameters:@{
@"item_id" : [[[StatusReportIAPHelper sharedInstance] product] productIdentifier],
@"content_type" : @{@"title": [[[StatusReportIAPHelper sharedInstance] product] localizedTitle]}
}];
}
@catch (NSException* exception) {
NSLog(@"SRS.logEventWithName Exception: %@ Reason: %@", exception.name, exception.reason);
}
Swift 4
do {
Analytics.logEvent(AnalyticsEventSelectContent, parameters: [
AnalyticsParameterItemID: "id-\(bundleID!)" as NSObject
, AnalyticsParameterItemName: "\(bundleID!)" as NSObject
, AnalyticsParameterContentType:
"\(unquotedAppname!)" as NSString])
}
catch {
NSLog("POAD.logEvent Cannot log event - no Internet connection");
}