-
Couldn't load subscription status.
- Fork 1
Open
Description
FYI @stan-osipov I'm not sure this is a bug with the plugin or if it is an issue with IOS/Mac, or if it is intentionally this way.
Steps to repro
- Create method to share some text with a valid URL in your app (see snippet below)
- Choose "copy" from the IOS dialog
- On your mac on the same network which is signed in with the same iCloud Id, paste into a text editor (or equivalent)
- Note the text remains but the url is missing
Example code
public void ShowSocialShareMessageWithLink(string url, string message, Action<SocialShareActivityResult> completedCallback = null)
{
ISN_UIActivityViewController controller = new ISN_UIActivityViewController();
controller.SetText(message);
controller.AddUrl(url);
controller.Present((result) =>
{
// Snip (not important)
});
}
Metadata
Metadata
Assignees
Labels
No labels