how can i use mailComposer in iPad as well as iPhone? -


i have implemented mail composer iphone , it's working fine want use mail composer in ipad should change or please guide me how can implement mail composer in ipad?if possible please give me sample code that.thanks in advance..

hi!i have implemented code , can implement writing below code:

mfmailcomposeviewcontroller *mailcontroller = [[mfmailcomposeviewcontroller alloc] init];

mailcontroller.mailcomposedelegate = self;  mailcontroller.modalpresentationstyle = uimodalpresentationfullscreen; [mailcontroller setsubject:@"hello iphone"]; [mailcontroller setmessagebody:@"please find attachment...." ishtml:no]; mydata = [[nsdata alloc] initwithcontentsofurl:[nsurl urlwithstring:[imgurl objectatindex:offsetx]]]; 

uiimage *pic = [[uiimage alloc] initwithdata:mydata];

nsdata *exportdata = uiimagejpegrepresentation(pic ,1.0); [mailcontroller addattachmentdata:exportdata mimetype:@"image/jpeg" filename:@"picture.jpeg"];  [self presentmodalviewcontroller:mailcontroller animated:no]; [mailcontroller release]; 

Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -