You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue 1
Having activityItems like this NSArray * activityItems = @[sharedText, sharedImage, sharedUrl];
But sharedImage and sharedUrl failed to be sent. Only sharedText.
Issue 2
If like this NSArray * activityItems = @[sharedImage, sharedText , sharedUrl];
will alert for "Not support NSUrl"
If other sequence of these three items, Issue 1 will happen, which means only text could be sent, while image and url not embedded.
The text was updated successfully, but these errors were encountered:
Two issues as below happen to me.
Issue 1
Having
activityItems
like thisNSArray * activityItems = @[sharedText, sharedImage, sharedUrl];
But
sharedImage
andsharedUrl
failed to be sent. OnlysharedText
.Issue 2
If like this
NSArray * activityItems = @[sharedImage, sharedText , sharedUrl];
will alert for "Not support NSUrl"
If other sequence of these three items, Issue 1 will happen, which means only text could be sent, while image and url not embedded.
The text was updated successfully, but these errors were encountered: