Currently I'm using the following code to display the message composer, but it opens the native iOS message app and my application goes to background.
Titanium.Platform.openURL('sms:'+e.rowData.value);
But I want to show the message composer inside my application.
Is there any way to display the message composing window of iOS in my titanium application ?
I searched a lot but didn't get any solution. And there is nothing in the appcelerator documentation regarding the message composer.
Thanks in advance