I like to add my own WhatsApp ActivityItem
to the UIActivityViewController
, but it is always added to the lower non colored activity bar, but I like to add it to the upper bar, the one with the colored items.
Thats the code I use:
WhatsApp *whatsApp = [[WhatsApp alloc] init];
UIActivityViewController* activityVC = [[UIActivityViewController alloc] initWithActivityItems:@[image, text] applicationActivities:@[whatsApp]];
Like.