I am using the activity view controller to share message to SMS, Facebook, Twitter. Is it possible to add Google+ too. Please let me know how it is possible in Swift
By default in the iOS 8, we can see a more a button. If you click it, users can see the google pus app if he/she has installed in their phone. User can select from there if they want to send text message via google+ from there.
Related
When we install whatsapp in android, then the contacts in address book are automatically synced with whatsapp contacts and the logo of whatsapp shows in front of them. So when we open that contact and click on whatsapp contact directly from there and we are sent back to whatsapp.
The same functionality I need in iPhone with my app. See thye attached screenshot.
If we click on that bubble then we will be sent back to new message page. The same way I want my icon with that contact and it should open my app. How to do this?
I want to do it by code (my app) itself.
If you have any idea or know any documentation then please share.
Thanks in advance.
In my app I'm using the Social framework to share status updates on Facebook and Twitter through an SLComposeViewController.
If the user doesn't have an account set up, he receives an alert that lets him go to the settings page.
Is there a way to automatically return to my app after setting up the account?
Simply put: no.
There is no call of action to navigate the user from settings to your app. You have to have faith the user will navigate to your app
I'm developing an iOS app that required me to track a clicked event on an advertising image.
When user clicked on the ads image the app will open a website in web view. My question is : how does the owner of that website know that the website has been opened from a link in my app ?
Ok you want to know whether the user clicked the add and the webview was opened, and the add was completely loaded? You could try adding Google Analytics via Javascript to the ad web page or you could use the webViewDidFinishLoad method in the webview to track whether the add was loaded completely or not.
I've found the solution. In case someone wants to do the same as mine, I've added this "?utm_campaign=August&utm_medium=referral&utm_source=MyApp" at the end of the link when clicked. So when the ads owner opens their google analytics console they will see in referral tab the traffic from MyApp. Here is the link for GA detail.
If I want to send a user to the facebook settings page under "system preferences" from within my app, what is the best possible way to do that, if it is indeed possible:
A case where this is useful would be if a user is trying to use an app's SSO capabilities to register for something using their facebook account. They click to register using facebook, but no facebook account is configured on the iPhone. It would be useful to then display a UIAlertView explaining that there is no facebook account configured, and then send the user to the settings page for facebook.
Is this possible? If so, how?
Short answer, Its not possible.
There is no way to launch device default "Settings" app from within your app. All you can do is give user some instructions of how to go about and change certain settings by themselves. You can do this as either a pop-up alert message or some sort of tutorial with screenshots built in your app.
I am new in handling apps that will be connecting with Facebook.
I want to let my user log in my app with Facebook account and be able to send something, for example, a gift to their Facebook friends.
I want to get the user's friends list and which is very easy by using FBFriendPickerViewController. However, I want to have an effect that if their Facebook friend(s) is/are also using my app, the app icon will be shown at the right hand side of the user table cell (Just like some Phone Contact lists will show if the contact has Whatsapp/ Google+)
I have been searching through sites but still find nothing about this.
So my question is, is there any "official" way (using Facebook SDK method) to show the icon?
Or I have been thinking of another approach is that, I first get the friend list and then saved it, with the information that whether the "friend" is using my app or not. Then I create a custom friend picker view and check the condition to enable/disable the visibility of the app icon.
I can get the information by using approached of using GraphAPI fields or using external database, for which are mentioned in this , this and this .....
Anybody help?
Ok I end up with customizing my own table view... : )