如何为ios制作邮件应用程序如何以及我需要知道什么 [英] How to Make mail application for ios how and what i need to know

查看:71
本文介绍了如何为ios制作邮件应用程序如何以及我需要知道什么的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何为ios制作邮件应用程序如何以及我需要知道的内容

我是IOS dev的新手。

How to Make mail application for ios how and what i need to know
I am new in IOS dev.

推荐答案

开始这里: https://developer.apple.com/devcenter/ios/index.action [ ^ ],您可以在这里找到任何必要的信息,包括:指南,技术博客,示例代码等
Start here: https://developer.apple.com/devcenter/ios/index.action[^], where you'll find any needful information, including: guides, technical blogs, sample codes, etc.


#import <MessageUI/MessageUI.h>
#import <MessageUI/MFMailComposeViewController.h>
        MFMailComposeViewController* controller = [[MFMailComposeViewController alloc] init];
	if (controller==nil) {
		return;
	}
	controller.mailComposeDelegate = self;
	[controller setSubject:@"Your subject"];
	[controller setMessageBody:@"Your message body" isHTML:NO];



我希望它有用


I hope it's usefull


看你可以访问内置的应用程序是什么iDevice已提供,您可以通过此链接。我认为这对你有帮助。



http://www.chupamobile.com/tutorial/details/65/Accessing+Built-In+Applications/ [ ^ ]



或您可以创建自定义邮件应用程序&为用户创建自定义UI。
See You can access built in application what iDevice has Provided, for that you can go through this link. I think it will help full to you.

http://www.chupamobile.com/tutorial/details/65/Accessing+Built-In+Applications/[^]

Or you can create your custom mail application & create your Custom UI for Users.


这篇关于如何为ios制作邮件应用程序如何以及我需要知道什么的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆