whatsApp 发送消息让用户在 ios 中编辑消息,在 android 中它不会

whatsApp send message let user edit the message in ios , in android it doesn't

有没有办法直接在用户select一个联系人之后发送消息,而不是让他在textField中编辑消息?像Android,它直接在你选择后发送一个联系人,我只找到了那个代码,它让用户先编辑消息-

let whatsappURL = NSURL(string: "whatsapp://send?text=Hello%2C%20World!")
if (UIApplication.sharedApplication().canOpenURL(whatsappURL!)) {
        UIApplication.sharedApplication().openURL(whatsappURL !)
   }

如此处所述Whatsapp Documentation,不。这是不可能的。 文本只会被预填,不会被发送。