I am trying to implement a "Send Feedback" viewcontroller where the user can automatically push to a viewcontroller and start filling out a form - a form that will then be submitted and composed to a static email address.
I am looking at the facebook app under the send feedback view and that's exactly what I would like to do.
Basically limiting the user from editing the Recipients and only able to edit the subject and body, which I will implement as UITextViews or something along those lines.
I understand there is the already implemented MFMailComposeViewController that presents a preimplemented UIViewController that easily allows the user to enter their subject, body, cc targets as well as recipients, but I would like to step away from another viewcontroller popping up and basically implement my own viewcontroller that the user can press on a UIButton and automatically send their typed in subject and body.
Refer to the facebook iOS version "Send Feedback" page.
If there are any further questions please ask.... I'll edit ASAP.