我正在使用它向 Facebook 上的朋友发送请求。我希望收到请求的人能够打开它并获得接受请求的奖金。我将如何去确认接收端的请求?
-(IBAction)sendRequest:(id)sender
{
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"Come check out my app.", @"message",
nil];
AppDelegate *aDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
[aDelegate.facebook dialog:@"apprequests" andParams:params andDelegate:self]
}