ios - objective-c - Attach UIImage to share -
i have issues following code. thing want image attached share message. nsstring *texttoshare = @"i'm feeling good!"; nsurl *mywebsite = [nsurl urlwithstring:@"http://www.iamgross.de"]; uiimage *bestimage = [uiimage imagenamed:@"besticon"]; nsarray *objectstoshare = @[bestimage, texttoshare, mywebsite]; dispatch_async(dispatch_get_global_queue(dispatch_queue_priority_default, 0), ^{ //here non-main thread. uiactivityviewcontroller *activityvc = [[uiactivityviewcontroller alloc] initwithactivityitems:objectstoshare applicationactivities:nil]; nsarray *excludeactivities = @[uiactivitytypeairdrop, uiactivitytypeprint, uiactivitytypeassigntocontact, uiactivitytypesavetocameraroll, uiactivitytypeaddtoreadinglist, uiactivitytypeposttofl...