开发者

iphones inbuilt mail composer

开发者 https://www.devze.com 2022-12-28 20:37 出处:网络
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开发者_

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开发者_JS百科 on iphones in built mail composer i could i do that please guide me to do that a sample code would be a boost


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消