0

I am new in iPhone and I want to share text and image using share kit. I request to provide link or complete tutorial for share kit.
I am using below to share to share.

SHKItem *item = [SHKItem image:imageView.image title:@"San Francisco"];
SHKActionSheet *actionSheet = [SHKActionSheet actionSheetForItem:item];

It shares only text, but not an image.

Thanks in advance.

Piyush Dubey
  • 2,416
  • 1
  • 24
  • 39

1 Answers1

0

You have to show it with the toolbar like the below code

  [actionSheet showFromToolbar:self.navigationController.toolbar];

Hope it will be help.

Jiten Parmar
  • 164
  • 10