You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
Undefined symbols for architecture i386:
"_FBTokenInformationExpirationDateKey", referenced from:
-[PFFacebookTokenCachingStrategy cacheTokenInformation:] in Parse(PFFacebookTokenCachingStrategy.o)
-[PFFacebookTokenCachingStrategy expirationDate] in Parse(PFFacebookTokenCachingStrategy.o)
-[PFFacebookTokenCachingStrategy setExpirationDate:] in Parse(PFFacebookTokenCachingStrategy.o)
Base on the parse.com forum the issue is -ObjC flag. I found the only library using the -ObjC flag is UIKit7 library. Is there a way to bypass this problem ? Thanks
The text was updated successfully, but these errors were encountered:
See the error message. Because FBTokenInformationExpirationDateKey is not a symbol in UI7Kit, I can't fix it form UI7Kit. I am not sure where it is, but you may miss some library from linking.
Parse recommend to use this -force_load to resolve RESTKIT issue , i wonder can this help to solve the issue with UI7Kit here. If this can , Can help to recommend whats the path should be which by referring to this link http://stackoverflow.com/questions/11254269/using-the-force-load-linker-flag-with-restkit-ios , it should be something like this (-force_load facebook-ios-sdk/lib/facebook-ios-sdk/libfacebook_ios_sdk.a -force_load $(BUILT_PRODUCTS_DIR)/libRestKit.a) ?
Thanks.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I got the following error:
Base on the parse.com forum the issue is -ObjC flag. I found the only library using the -ObjC flag is UIKit7 library. Is there a way to bypass this problem ? Thanks
The text was updated successfully, but these errors were encountered: