I am using UIActivityViewController to share image and url from my application. I'm having trouble formatting a post on facebook. I attach the image using a subclass of UIActivityItemProvider and provide the text for the message in the same way.
I want to add a URL, but he needs a special URL scheme for my applications before this myurl://image?url=http://imageurl.com
The problem is that when this is posted, only the last half of the URL is clickable (from http: // onwards). This means that it does not open my application with a url.
Is there any other way to do this? I know that I can create an application on Facebook, but how can I link them together using the UIActivityViewController ?
thanks
source share