Skip to content

Copying a message with a link from iPhone to Mac removes URL #69

@chris-o3h

Description

@chris-o3h

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

  1. Create method to share some text with a valid URL in your app (see snippet below)
  2. Choose "copy" from the IOS dialog
  3. On your mac on the same network which is signed in with the same iCloud Id, paste into a text editor (or equivalent)
  4. 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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions