I am using Facebook iOS SDK's dialog method for feeds. I am setting, the name, caption, description, link and picture. When I display the dialog, the following display issues occur:
The "Cancel" and "Share" cover part of the text. When I try to scroll the dialog, these buttons scroll, too. Therefore, the covered text can never be seen.
The application's icon (the one before the text "via AppName") just appears as a question mark inside a blue box.
Is anyone else experiencing these issues? And is there any workaround for these?
Thanks!
Cancel and Share buttons are part of the html contents that are loaded within the uiwebview of the dialog. I think you could edit it somehow using the webview instance in FBDialog and the method (NSString *)stringByEvaluatingJavaScriptFromString:(NSString *)script; but I haven't actually done so, I've just used it to ask for some part of the document.
Take a look at this urls if you wish to dig deeper into editing the html inside the UIWebView.
http://iphoneincubator.com/blog/windows-views/uiwebview-dynamically-modify-html-documents http://iphoneincubator.com/blog/windows-views/how-to-inject-javascript-functions-into-a-uiwebview
To make the app icon appear, simply go to your Facebook app settings inside the developer app in FB. Then choose an icon, both its big and small images, and you're done.
Cheers.