In my app the user can post a link to his facebook wall. However, I cannot use the "authorize" method from the SDK to login the user because it's a no go for my client that the facebook app explicitly asks for all the (basic) permissions. Therefore I immediately use a facebook dialog.
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys: @"http://www.google.at", @"link", nil];
[self.facebook dialog:@"feed" andParams:params andDelegate:self];
This works fine but after the login when the user can post to his wall, the publish & cancel button always moves off screen (see screenshot). When I scroll down, the button immediately moves off screen again. This does not happen after a successful login. Does anybody know how I can keep the buttons on screen? Otherwise the user is not able to post the link.
I found this solution but at least for me it does not work: https://github.com/facebook/facebook-ios-sdk/issues/329
