I want to launch the iMessage app (built in new feature for iOS 5) from within my own application.. Can some one help me out ??
I know apps can be opened from within an app using openURL:, but whats the URL schema for iMessage??
Thanks in advance !!
From IPhone URL Schemes:
NSString *stringURL = @"sms:";
NSURL *url = [NSURL URLWithString:stringURL];
[[UIApplication sharedApplication] openURL:url];
You can't target iMessage specifically because it is transparent in the system. So you should work with SMS instead, and iMessage will be used if available.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With