Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an app that is NOT going on the app store and will be used in a much controlled environment with 'Guided access' enabled. Imagine it been used in an exhibition type environment where users can use the app and get a picture taken and upload it to their Facebook page/timeline.

Basically this app need to share a picture on Facebook among other things. And I'm using iOS 6, since I need guided access.

I can hook up everything to work fine with SLComposeViewController, but I don't want the user to leave the app to go to settings app to login to Facebook (since it's on 'Guided mode'). I also cannot let one user save their private credentials on a public iPad as well. So for each and every share a user does, I need to ask the username and password for their Facebook page.

But the question is I couldn't find a way to give a manual Facebook log in page using the new SocialFramework in iOS 6. I can create my own UI if I could find a way to get this done in code.

I tried the WWDC '12 session talk approaches, but both ways they implement, logs a user through the normal way (from Single Sing On in Settings app). Is their a way to override this behaviour.

I tried manually creating ACAccount object and tried saving it to ACAccountStore, but I got stuck in the middle of that process. Basically I can't wrap my head around ACAccountCredential object and where the actual username and password of the user should go.

Now I know this looks like bit of a ramble, but hope my question made sense.

Any suggestions or comments are welcomed! Thanks.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.