Tag: Facebook iOS

IOS Facebook的朋友邀请不在Facebook的sdk工作

即时通讯工程,我需要邀请Facebook的朋友,但通知不会在Facebook帐户发送。 NSString *frindId=[[self.checkitem1 objectAtIndex:indexPath.row]valueForKey:@"id"]; NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys: @"Come check out my app.", @"message", frindId, @"to", nil]; [FBWebDialogs presentRequestsDialogModallyWithSession:nil message:[NSString stringWithFormat:@"Come check out my app."] title:@"MyWorkOut" parameters:params handler:^(FBWebDialogResult result, NSURL *resultURL, NSError *error) { if (error) { // Case A: Error launching the dialog or sending request. NSLog(@"Error sending request."); } else { if […]