IOS 6 - UIActivityViewController Elements

Hope everyone knows that iOS 6 contains a new style of ActionSheet (UIActivityViewController). . UIActivityViewController can be triggered with paramaxes like string, url, image, etc. Below is a snippet of code for this (where items is an array with a string and url params).

 UIActivityViewController *activityVC = [[UIActivityViewController alloc] initWithActivityItems:items applicationActivities:nil]; 

But is there a way we can assign different parameters when we select different exchange options, such as Mail, Facebook or Twitter?

One way - we can implement UIActivityItemSource, where we need to implement the original methods

 - (id)activityViewController:(UIActivityViewController *)activityViewController itemForActivityType:(NSString *)activityType 

which always returns a string value. But I need to pass an array so that I can assign various parameters such as URL, image and title.

Any idea how we can achieve this?

+6
source share
1 answer

You cannot change anything for the built-in iOS UIActivityViewController elements such as Mail, Facebook, and Twitter. To implement custom actions for items in your UIActivityViewController, you must create your own UIActivity subclass for each custom action you want. Here is an example:

 - (UIActivityViewController *)getActivityViewController { MyFeedbackActivity *feedbackActivity = [[MyFeedbackActivity alloc] init]; MyFacebookActivity *facebookActivity = [[MyFacebookActivity alloc] init]; MyMailActivity *mailActivity = [[MyMailActivity alloc] init]; NSArray *applicationActivities = @[feedbackActivity, facebookActivity, mailActivity]; NSArray *activitiesItems = @[@"A string to be used for MyFeedbackActivity", @"A string to be used for MyFacebookActivity", @"A string to be used for MyMailActivity"]; UIActivityViewController *activityVC = [[UIActivityViewController alloc] initWithActivityItems:activitiesItems applicationActivities:applicationActivities]; // Removed un-needed activities activityVC.excludedActivityTypes = [[NSArray alloc] initWithObjects: UIActivityTypeCopyToPasteboard, UIActivityTypePostToWeibo, UIActivityTypePostToFacebook, UIActivityTypeSaveToCameraRoll, UIActivityTypeCopyToPasteboard, UIActivityTypeMail, UIActivityTypeMessage, UIActivityTypeAssignToContact, nil]; return activityVC; } 

A very limited example of a UIActivity subclass with documentation of methods that you will be interested in overriding to process your user data / actions.

 #import "MyFeedbackActivity.h" @implementation MyFeedbackActivity - (NSString *)activityType { return @"MyFeedbackActivity"; } - (NSString *)activityTitle { return @"Feedback"; } - (UIImage *)activityImage { return [UIImage imageNamed:@"feedback"]; } - (BOOL)canPerformWithActivityItems:(NSArray *)activityItems { return YES; } - (UIViewController *)activityViewController { /** * DESCRIPTION: * Returns the view controller to present to the user. * Subclasses that provide additional UI using a view controller can override this method to return that view controller. If this method returns a valid object, the system presents the returned view controller modally instead of calling the performActivity method. * Your custom view controller should provide a view with your custom UI and should handle any user interactions inside those views. Upon completing the activity, do not dismiss the view controller yourself. Instead, call the activityDidFinish: method and let the system dismiss it for you. */ } - (void)prepareWithActivityItems:(NSArray *)activityItems { /** * DESCRIPTION: * Prepares your service to act on the specified data. * The default implementation of this method does nothing. This method is called after the user has selected your service but before your service is asked to perform its action. Subclasses should override this method and use it to store a reference to the data items in the activityItems parameter. In addition, if the implementation of your service requires displaying additional UI to the user, you can use this method to prepare your view controller object and make it available from the activityViewController method. */ } -(void)performActivity { /** * DESCRIPTION: * Performs the service when no custom view controller is provided. * The default implementation of this method does nothing. If your service does not provide any custom UI using the activityViewController method, override this method and use it to perform the activity. Your activity must operate on the data items received in the prepareWithActivityItems: method. * This method is called on your app's main thread. If your app can complete the activity quickly on the main thread, do so and call the activityDidFinish: method when it is done. If performing the activity might take some time, use this method to start the work in the background and then exit without calling activityDidFinish: from this method. Instead, call activityDidFinish: from your background thread after the actual work has been completed. */ } @end 
+28
source

Source: https://habr.com/ru/post/945422/


All Articles