i have one Greeting card application in which i have one view as image i want to copy that image and paste it to to native SMS application.
so i need to code for copy image from application.
so i can paste it in SMS Native application.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
iOS does not allow this. You can do it with plaintext, but not binary data (like an image).
To open the Messages app, you can construct an
sms://URL and invoke-[UIApplication openURL:], but that’s it.If you’d like this ability to be in a future version of iOS, please file a bug report and it’ll be considered.