How to set a mail Subject in UIActivityViewController?

前端 未结 4 1238
终归单人心
终归单人心 2020-12-08 13:04

I want to set subject for email sharing in UIActivityViewController and also want to share in Twitter. I know in Twitter if we want to share — we need compress

4条回答
  •  無奈伤痛
    2020-12-08 13:30

    Check below code for the email for setting up your email subject:

    UIActivityViewController* avc = [[UIActivityViewController alloc] initWithActivityItems:@[@"Your String to share"]
                                      applicationActivities:nil];
    [avc setValue:@"Your email Subject" forKey:@"subject"];
    
    avc.completionHandler = ^(NSString *activityType, BOOL completed) {
        // ...
    };
    

    Here the line

    [avc setValue:@"Your email Subject" forKey:@"subject"];

    Makes the subject as "Your email Subject" if user picks email option in the UIActivityViewController.

    I hope it helps...

提交回复
热议问题