Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

how can I change title in dialog "send requests" ?

enter image description here

share|improve this question

1 Answer

You can set the title parameter in presentRequestsDialogModallyWithSession method.

 [FBWebDialogs
     presentRequestsDialogModallyWithSession:nil
     message:msg
     title:@"Change your title here"
     parameters:nil
     handler:nil
 ];
share|improve this answer
yep, but only in Facebook 3.2 SDK :) – Roman Barzyczak Mar 24 at 10:56
what version are you using? – MonkeyBonkey Mar 24 at 12:11
i used 3.1., now i use 3.2 and i can change title. In version 3.1 this function is disabled. – Roman Barzyczak Mar 25 at 11:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.