Xcode log show the above error while running in Xcode 8.1, ios 10.1. Is there any problem or should I ignore and continue?
相关问题
- CALayer - backgroundColor flipped?
- Core Data lightweight migration crashes after App
- back button text does not change
- iOS (objective-c) compression_decode_buffer() retu
- how to find the index position of the ARRAY Where
相关文章
- 现在使用swift开发ios应用好还是swift?
- TCC __TCCAccessRequest_block_invoke
- xcode 4 garbage collection removed?
- Unable to process app at this time due to a genera
- How can I add media attachments to my push notific
- didBeginContact:(SKPhysicsContact *)contact not in
- Custom Marker performance iOS, crash with result “
- Why is my library not able to expand on the CocoaP
I have this problem, too. It seems to be caused by an the Facebook SDK's Login Access Token. It caches just fine on a real device, but not on the simulators. Try running the app from a physical device.
You can ignore this warning, it's hard coded in the FacebookSDK when using the iOS Simulator. The SDK does contain a bug though which prevents the simulator from caching the access token.
You can fix this by adding the following line:
key = [NSString stringWithFormat:@"%@_fix", key];
in
FBSDKKeychainStore.m:94
andFBSDKKeychainStore.m:135
just before:[[NSUserDefaults standardUserDefaults] setObject:value forKey:key];
I had the same problem. I tried to run in real device and this show error with OAuth Login Then I just turn OAuth Login on and everything works well