I have subclassed RMMessageComposeViewController : MFMessageComposeViewController
. The extra functionality that I'm aiming for is for the MFMessageComposeViewController
to be able by itself to present a new message compose controller (over itself).
So I should from one RMMessageComposeViewController
instance present a new one. The message result from the new instance should be sent to the parent (or "old" one). So I suppose I need to set the parent message compose controller as the delegate when I'm creating the child ("new" one).
Could someone please help me think this out, what instance variables I need to add (parents, children?) How to setup the child message compose controller?