Whatsapp link on products?

后端 未结 4 1161
离开以前
离开以前 2021-02-13 18:41

For the iPhone Apps, is it possible to have a Whatsapp link on products? Once link it would send a message to my mobile number through whatsapp. Please advice.

4条回答
  •  我寻月下人不归
    2021-02-13 19:31

    notification = @"Your Daily Inspiration by the ";
    notification = [notification stringByAppendingString:@"\n"];    
    notification = [notification stringByAppendingString:textview.text];
    NSString *whats=notification;
    NSString *baseURL = [NSString stringWithFormat:@"whatsapp://send?text=%@",whats];
    NSURL *url = [NSURL URLWithString:[baseURL stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
    
    if ([[UIApplication sharedApplication] canOpenURL: url]) {
        [[UIApplication sharedApplication] openURL: url];
    }
    else
    {
        UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Sorry"
                                                            message:@"You can't send a thought on Whatsapp"
                                                           delegate:self
                                                  cancelButtonTitle:@"OK"
                                                  otherButtonTitles:nil];
        [alertView show];
    
    }
    

    used this code i m sending following string on whatsapp

提交回复
热议问题