无法指示服务com.apple.WebKit.WebContent

我使用适用于iOS的Shopify Mobile Buy SDK,无法从他们的付款networking视图中获得回叫。 出于某种原因警告:

2016-11-25 21:17:25.945267 Drool[3328:799969] Could not signal service com.apple.WebKit.WebContent: 113: Could not find specified service 2016-11-25 21:17:25.977316 Drool[3328:799969] Could not signal service com.apple.WebKit.Networking: 113: Could not find specified service 2016-11-25 21:17:26.105947 Drool[3328:799969] [App] if we're in the real pre-commit handler we can't actually add any new fences due to CA restriction 

不断地出现,我不知道为什么会发生这种情况,如果这是造成这个问题的原因,你们有没有知道这是什么?

为cookie属性@"HttpOnly"设置value @"false" @"HttpOnly" ,就像这样:

  NSHTTPCookie *cookieWID = [NSHTTPCookie cookieWithProperties:[NSDictionary dictionaryWithObjectsAndKeys: @"wid" ,NSHTTPCookieName, WID,NSHTTPCookieValue, @"www.google.com",NSHTTPCookieDomain, @"",NSHTTPCookiePath, @"false",@"HttpOnly", nil]]; 

您可能需要允许App Transport Security访问资源。 尝试按照此处所述修改您应用的Info.plist

我有类似的问题,只出现在iOS 10.2,是如此糟糕。 该html无法收到我通过使用cookie的值

如果这个问题发生在任何人的SIM上,我认为这是JSONparsing在Xcode模拟器caching中的问题。 通过“在模拟器中,selectiOS模拟器>重置内容和设置”解决。 更完整的解决scheme可以在这里findhttps://gist.github.com/riosc/4539602