FBDialog orientation issue
How can I set the orientation of fblogindialog? It always appears in portrait mode. When I set the frames it just becomes in landscape mode but the web view inside the frame doesnt.
What should I do..
Please help here is the code
self.loginDialog = [[[FBLoginDialo开发者_开发知识库g alloc] init] autorelease];
loginDialog.delegate = self;
[self.loginDialog show];
//self.loginDialog.frame = CGRectMake(0, 0, 480, 320);
[self.view addSubview:loginDialog];
here is the screen shot:
精彩评论