Skip to content

Instantly share code, notes, and snippets.

@mattstevens
Created May 19, 2013 18:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattstevens/5608445 to your computer and use it in GitHub Desktop.
Save mattstevens/5608445 to your computer and use it in GitHub Desktop.
Setting subject and email address for NSSharingServiceNameComposeEmail via private API
NSSharingService *service = [NSSharingService sharingServiceNamed:NSSharingServiceNameComposeEmail];
NSDictionary *parameters = @{
@"NSSharingServiceParametersDefaultSubjectKey": @"Lo, a subject!",
@"NSSharingServiceParametersDefaultRecipientsKey": @[@"someone@somewhere.com"]
};
[service setValue:parameters forKey:@"parameters"];
[service performWithItems:@[@"Woo, private API."]];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment