Possible Duplicate:
i WANT to use sharekit to share images from my NSMutablearray
i am using sharekit to share images, and want to be able to share all the images upon users request not just one image // this is the code I have for my share button
UIImage *image = [UIImage imageNamed:@"Atoms"];
SHKItem *item = [SHKItem image:image title:@"Look at this picture!"];
// Make the ShareKit action sheet
SHKActionSheet *actionSheet = [SHKActionSheet actionSheetForItem:item];
// Display the action sheet
[actionSheet showInView:self.view];
// this is my array I want it my sharekit will respond to all the items in the array
NSMutableArray *images = [[NSMutableArray alloc] initWithObjects:@"Americans.png",@"Approach.png",@"Arianny.png",@"Atoms.png",nil];
Comments
Post a Comment