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.

I am developing an iOS app with MonoTouch, i have integrated Facebook sdk in this app, but the cancel button on the facebook screen is invisible. I saw this solution here Facebook cancel button is invisble

but i don't know what FBDialog.bundle means in monotouch terms, anybody has ideas?

thanks,

share|improve this question

1 Answer

I'm assuming you're using the facebook bindings from github and built it yourself.

i don't know what FBDialog.bundle means in monotouch terms

A .bundle is a directory. It can contains resources, like bitmaps.

When you build the bindings, the sources of the Facebook SDK will be downloaded, from github, including the FBDialog.bundle which includes the bitmaps you're looking for.

What you need is to tell MonoDevelop to include this .bundle with your application. See the blog entry from Craig Dunn to learn how to add a bundle. Once added to your application the SDK will be able to find (and use) the bitmaps it requires.

share|improve this answer

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.