Reputation: 3808
I want to share my app Info. programmatically like iTunes app does, like these pics show
When we click on this button
----------------------------------------------iTunes app load it's info in MFMailComposer like this
Can we do like this programmatically.
Upvotes: 0
Views: 59
Reputation: 21507
It looks to me like all it does is it opens an MFMailComposerViewController with the body of the message set to some HTML.
Just use setMessageBody:isHTML:
with isHTML set to true.
Upvotes: 2