UI7Kit
UI7Kit copied to clipboard
Problem to compile together with the Parse sdk ?
I got the following error:
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
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.
Hi , I am facing the same problem , it seems like the issue is similar with using RESTKit , as explain from this post https://www.parse.com/questions/using-the-parse-ios-sdk-without-including-the-facebook-sdk
Parse recommend to use this -force_load
Thanks.