如何在iOS应用中更改fb对话框标题?

时间:2013-02-21 16:39:31

标签: ios facebook dialog facebook-ios-sdk apprequests

如何更改对话框“发送请求”中的标题?

enter image description here

1 个答案:

答案 0 :(得分:1)

您可以在presentRequestsDialogModallyWithSession方法中设置title参数。

 [FBWebDialogs
     presentRequestsDialogModallyWithSession:nil
     message:msg
     title:@"Change your title here"
     parameters:nil
     handler:nil
 ];