简体   繁体   中英

In share kit is there any way to share multiple items like image, text, url at a time

I want share an image, text, url at a time and i am using share kit. But here it is sharing only one item at a time. is there any way to share multiple items like image, text, url at a time.

Plz help me out. Thanks.

Looking at the documentation here: http://getsharekit.com/docs/

I noticed that it appears as though you can only share one item at a time, which is why they put each type of sharing under a different heading and there is no combination heading. 共享工具

Why not just create a custom method that implements all these various callbacks into one? Such as creating an array of items and sharing them all at once.

- (void)myButtonHandlerAction
{
    // Create an array of items here url, date, etc.
    NSURL *url = [NSURL URLWithString:@"http://getsharekit.com"];
    SHKItem *item = [SHKItem URL:url title:@"ShareKit is Awesome!"];

    // Get the ShareKit action sheet
    SHKActionSheet *actionSheet = [SHKActionSheet actionSheetForItem:item];

    / Display the action sheet
    [actionSheet showFromToolbar:navigationController.toolbar];
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM