views:

211

answers:

1

is it possible to create a custom dialog login button for facebook

+1  A: 

Just create any button you want and in your tap callback use:

[loginDialog show];

where loginDialog is a FBLoginDialog.

If you want custom login dialog, the issue is much more complicated, see this question: http://stackoverflow.com/questions/2485771/iphone-sdk-facebook-connect-using-a-custom-login-dialog

Łukasz Sromek