file - ipad share by email subject line - set subject line -


is there way set email subject line document @ http://www.mydomain.com/download.aspx?instanceid=1087&type=doc

now when hit share , try send ipad, subject line is: "http://www.mydomain.com/download.aspx?instanceid=1087&type=doc"

when should customized document: "application form", "waiver form", etc.

do set in acrobat (it pdf) or there code can use?

thanks

check below code email setting email subject:

uiactivityviewcontroller* avc = [[uiactivityviewcontroller alloc] initwithactivityitems:@[@"your string share"]                                   applicationactivities:nil]; [avc setvalue:@"your email subject" forkey:@"subject"];  avc.completionhandler = ^(nsstring *activitytype, bool completed) {     // ... }; 

here line

[avc setvalue:@"your email subject" forkey:@"subject"];

makes subject "your email subject" if user picks email option in uiactivityviewcontroller.

i hope helps...


Comments

Popular posts from this blog

css - Which browser returns the correct result for getBoundingClientRect of an SVG element? -

gcc - Calling fftR4() in c from assembly -

Function that returns a formatted array in VBA -