fb SDK 3.2에서는이 문제가 없었지만 SDK 3.5.1에서 업그레이드 한 후 친구 초대자는 몇 가지 이상한 문제가 있습니다. 선택한 하나와 그 아래 하나를 선택합니다. 또한 아래로 스크롤하려고 할 때 테이블을 다시 시작하고 테이블 위로 다시 가져옵니다. 내가 알고 온 것과Facebook sdk 3.5.1 초대 친구 요청으로 iOS에서 이중 선택
-(IBAction)secondClick:(id)sender
{
NSDictionary *params = [[NSDictionary alloc] initWithObjectsAndKeys:nil];
[FBWebDialogs
presentRequestsDialogModallyWithSession:nil
message:@"Learn how to make your iOS apps social."
title:@"Test"
parameters:params
handler:^(FBWebDialogResult result, NSURL *resultURL, NSError *error) {
if (error) {
// Error launching the dialog or sending the request.
NSLog(@"Error sending request.");
} else {
if (result == FBWebDialogResultDialogNotCompleted) {
// User clicked the "x" icon
NSLog(@"User canceled request.");
} else {
// Handle the send request callback
NSDictionary *urlParams = [self parseURLParams:[resultURL query]];
if (![urlParams valueForKey:@"request"]) {
// User clicked the Cancel button
NSLog(@"User canceled request.");
} else {
// User clicked the Send button
NSString *requestID = [urlParams valueForKey:@"request"];
NSLog(@"Request ID: %@", requestID);
}
}
}
}];
:
나는 나의 friendPicker 코드를 게시합니다. 약 1 주일 전까지는 잘 작동했습니다. 내 안드로이드 기기의 Candy Crush Saga에서도 동일한 문제가 발생합니다. –
@Dejan, 나에게 동일한 문제가 생겼다. 회신을 보내 주시면 –