应用内屏幕截图并附加到电子邮件,无需保存到库中
我想知道如果我想让我的应用程序能够通过按 UI 按钮来截取屏幕截图并立即弹出并通过邮件撰写和通过电子邮件发送屏幕截图而不将其保存到照片库中,我想知道应该使用什么代码?
非常感谢!
I would like to know what code should i use if i want to make my app able to take a screenshot of the screen by pressing a UIbutton and immediately pop up and Mail compose and email out the screenshot without saving it into photo library?
Many thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要向项目中添加两个框架 -。
QuartzCore
和MessageUI
,然后执行#import
和 <代码>#import你的按钮按下代码应该是这样的,
You will need to add two frameworks to your project -
QuartzCore
andMessageUI
and then do#import <QuartzCore/QuartzCore.h>
and#import <MessageUI/MessageUI.h>
.Your button press code should be like,