2012-06-03 113 views
1

我正在使用它發送請求給Facebook上的朋友。我希望收到請求的人能夠打開它並收到接受請求的獎金。我將如何着手確認接收端的請求?迴應Facebook的iPhone應用程序請求

-(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] 

} 

回答

相關問題