3
我試圖實現Facebook的功能,但我在下面的代碼行的錯誤:使用undeclare標識符「FBRequestConnection」
[FBRequestConnection startWithGraphPath:[NSString stringWithFormat:@"%@/photos",[fbidarray objectAtIndex:j]] parameters:params HTTPMethod:@"POST" completionHandler:^(FBRequestConnection *connection, id result, NSError *error1)
的錯誤是:
use of undeclare identifier 'FBRequestConnection'
我有進口下列框架:
#import <FBSDKCoreKit/FBSDKCoreKit.h>
#import <FBSDKLoginKit/FBSDKLoginKit.h>
任何你知道這是爲什麼錯誤的?
我會很感激你的幫助
您還需要添加HTTPMethod:@「POST」參數,以使此調用等於問題中的調用。 – deko