Hello everyone i am new to i phone development i have a requirement that my email us field is coming from webservice on tapping it the iphones email composer gets open if i want to add a button on iphones in built mail composer i could i do that please guide me to do that a sample code would be a boost
+1
A:
MFMailComposeViewController is a view controller so you can add views to the view it controls.
UIButton extraButton = [UIButton ...];
[mailComposer.view addSubview:extraButton];
To make it look good may be a little more difficult.
drawnonward
2010-05-04 04:54:26
+2
A:
See This link its really wonderful.It will give you the best solution according to your requirement.
http://edumobile.org/iphone/iphone-programming-tutorials/mailsend-in-the-iphone/
Ankit Vyas
2010-05-11 11:07:25