3 回答

TA貢獻1845條經驗 獲得超8個贊
與下載,編譯和安裝FB工具包相比,這是一種潛在的更簡單的解決方法,該工具包又大又麻煩。請注意,當然,您將無法使用Parse中的任何FB類型功能,并且如果觸發任何期望使用這些虛擬符號的Parse代碼,則會遇到嚴重問題。但是,我想,如果您遠離他們,您會沒事的。所以...
在您的應用程序中創建一個名為FBMissingSymbols的對象
刪除不需要的.h
把它放在.m中:
NSString *FBTokenInformationExpirationDateKey = @"";
NSString *FBTokenInformationTokenKey = @"";
NSString *FBTokenInformationUserFBIDKey = @"";
@interface FBAppCall:NSObject
@end
@implementation FBAppCall
@end
@interface FBRequest:NSObject
@end
@implementation FBRequest
@end
@interface FBSession:NSObject
@end
@implementation FBSession
@end
@interface FBSessionTokenCaching:NSObject
@end
@implementation FBSessionTokenCaching
@end
@interface FBSessionTokenCachingStrategy:NSObject
@end
@implementation FBSessionTokenCachingStrategy
@end

TA貢獻1836條經驗 獲得超13個贊
我喜歡dbquarrel的答案,但是由于缺少一些新的社會階層,它不再起作用了。
所以做同樣的事情,但是添加以下內容:
NSString *FBTokenInformationExpirationDateKey = @"";
NSString *FBTokenInformationTokenKey = @"";
NSString *FBTokenInformationUserFBIDKey = @"";
NSString *SLServiceTypeTwitter = @"";
NSString *ACAccountTypeIdentifierTwitter = @"";
@interface FBAppCall:NSObject
@end
@implementation FBAppCall
@end
@interface FBRequest:NSObject
@end
@implementation FBRequest
@end
@interface FBSession:NSObject
@end
@implementation FBSession
@end
@interface FBSessionTokenCaching:NSObject
@end
@implementation FBSessionTokenCaching
@end
@interface FBSessionTokenCachingStrategy:NSObject
@end
@implementation FBSessionTokenCachingStrategy
@end
@interface ACAccountStore:NSObject
@end
@implementation ACAccountStore
@end
@interface SLRequest:NSObject
@end
@implementation SLRequest
@end
@interface SLComposeViewController:NSObject
@end
@implementation SLComposeViewController
@end
- 3 回答
- 0 關注
- 639 瀏覽
添加回答
舉報