Reputation: 1615
Recently I've found that the Facebook API had been changed a lot since last year and I have to use a new SDK (3.1 by now) in my apps.
I'm trying to figure out what's the difference between Feed Dialog used before and a new Native Dialog. So far I can see that (unlike Feed Dialogs) using Native ones is for IOS 6+ only, and that it uses some new share sheet framework.
Could you describe (suggest?) in two words what is the practical purpose (difference, benefits?) of these Native Dialogs with respect to Feed Dialogs? Perhaps your vision of if it makes sense to complicate the code in order to support Sharing with Native Dialogs on IOS6+ devices.
Upvotes: 1
Views: 851
Reputation: 12085
The native dialog is a feature included in the iOS 6 system to share messages easily with a unified UI for all applications. For this the user must have setup his account in the iOS preferences pane! Most other stuff is something related to the Facebook SDK and not included in the system.
Pros of Native Controller:
Pros of Facebook SDK:
Upvotes: 1