Linking.openUrl在IOS中发送短信

时间:2019-11-10 21:03:15

标签: ios react-native sms deep-linking

我需要在React-native应用程序中发送带有预填充正文的SMS,但是我无法通过电话号码

这是我到目前为止尝试过的:

!pip3 install tensorflow_text>=2.0.0rc0 import tensorflow as tf import tensorflow_text embed = tf.saved_model.load("https://tfhub.dev/google/universal-sentence-encoder-multilingual/2")

Linking.openURL(sms:/open?addresses=${phone}&body=${body})

Linking.openURL(sms:${phone}&body=${body})

sms应用程序将打开,并且正文位于消息字段中,但“收件人:”字段包含带有微调框的“无名称”。

*这是IOS(13.2.2)的最新版本

1 个答案:

答案 0 :(得分:0)

问题似乎出在能在真实设备上运行的模拟器上,正如Bug所提到的,正确的语法确实是

Linking.openURL(`sms:${phone}&body=${body}`)