There are two method to share via whatsapp
then here is example.
/**Just open whatsapp*/
/** Send Hello World! to any contact/group*/
- URL scheme
- Document Interaction API
then here is example.
/**Just open whatsapp*/
NSURL *whatsappURL = [NSURL :@"whatsapp://app"];
if ([[UIApplication ] : whatsappURL]) {
[[UIApplication ] : whatsappURL];
}
/** Send Hello World! to any contact/group*/
NSURL *whatsappURL = [NSURL :@"whatsapp://send?text=Hello%2C%20World!"];
if ([[UIApplication ] : whatsappURL]) {
[[UIApplication ] : whatsappURL];
}
/** Send message to selected contact*/
NSURL *whatsappURL = [NSURL :@"whatsapp://abid?/*Address Book ID*/"];
if ([[UIApplication ] : whatsappURL]) {
[[UIApplication ] : whatsappURL];
}
And if you want to go with Document Interaction API then check whatsapp documentation.
No comments:
Post a Comment