If any one has idea about how to share text to viber Facebook messenger and instagram than please give some reference.
i have try with defultcanOpenURL
method for viber and Facebook-messenger as below:
Code:
NSURL *fbURL = [NSURL URLWithString:@"fb-messenger://user-thread/USER-ID/"];
if ([[UIApplication sharedApplication] canOpenURL: fbURL]) {
[[UIApplication sharedApplication] openURL: fbURL];
}
NSString * urlViber = [NSString stringWithFormat:@"viber://send? Text=text"];
NSURL * viberURL = [NSURL URLWithString:[urlViber stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
if ([[UIApplication sharedApplication] canOpenURL: viberURL]) {
[[UIApplication sharedApplication] openURL: viberURL];
} else {
Alert(@"Viber not installed.", @"Your device has no Viber installed.")
}
But the above code simply redirects to the application. It doesnt pass text to the application textfield.
Waiting for helpful guideline from experts.. :)