Global facebook instance in iphone app [closed] - iphone

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I would like to have my app log users into facebook in a settings view and then save the information into userdefaults. When the app loads, it should log into facebook if the information is in userdefaults, and if not, continue operating normally without facebook functionality. Basically, I want one instance of facebook which is loaded at the beginning, and all the information used throughout every view in the app.
Is this possible?
Everything that I have seen so far shows one instance per view which is not what I want.

We do it all the time in our apps.
I typically create a Facebook singleton to manage the Facebook interaction and store the token in either NSUserDefaults or the Keychain, depending on the application.

Related

Get users' application list in Facebook [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I want to develop a facebook app such that when the user install my app. I can
Get the user's application list
Find his friend who use the same apps as him(categorized by apps)
Track whether the user receives recommendation for the app
Track what information each app needs from users.
I have little experience in facebook app developing. I want to know is it technical possible to achieve the above four aims using facebook api?
Nope, the feature to retrieve the list of applications the User has authorized is not exposed to any of the present Facebook's APIs.

AppReview in my app [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Have i any possibilities handle user review?
For example:
- Can user writes review in some UITextField, and send it after writing?(Don't found something like this)
- Or maybe I can handle his review on AppStore(But i can't found userAppleId on apstore web page)
I think you're asking if you can provide an interface inside your app for a user to use to write an App Store review of your app.
The answer is no, you can't do that.
You can do nothing with the review after the user wrote one for your app. And you can not make a textfield to let the user ti review your app. What you can do is open a url which lead the user to your app's page, so the user can start to write a review by just clicking the Write Review button in AppStore. There is a lot of open source libs for to simplify your work to lead users to review, for example iRate and appirater.

Content from Website to iPhone App [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I've been creating iPhone applications for the past couple of months, and one question has always crossed my mind: how does one go about creating an app like Instagram or some other application that lets users sign up and log in? I know how to do this with a website (SQL), but how do you do it on the iPhone? General answers are perfectly fine. Thanks!
The simplest approach: use UIWebView to wrap the website.
If you prefer using native UI, you can use JSON to communicate with the server for user login part.

Facebook IOS app in and outs [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I need some help regarding the ios App, i want to know that how facebook app is rendering its pages, is it UIWebview or something else, is they are just rendering the HTML5 page by using UIwebview or its Custom UIViews. So if they are Custom UIViews how they manage the auto populating data mechanism.
Is there anybody, who can enlighten the in and outs of facebook ios app.
Thanks
The older version of the facebook application uses UIWebView to display content. According to the new version, it now uses native views and gets the data from facebook via an API.

Can we create iframe apps via the api? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I am adding app to fan page as a tab.I wanted to create many tab to my facebook page.Does I need to create diffrent app for that.Can we create app through code or any api?
An app can only be added one time to any given page as a tab. So you'll need to create an app for each tab you'd like to display.
At this time there is no current method of creating an app via code. There was previously a method with the old connect product but it seems to have become obsolete.