背景 :uniapp 中点击按钮跳转到原生 swift 的 viewcontroller 执行扫码,当扫到内容后需要把结果传递给 uts 或 vue 界面显示
Viewcontroller的代码大致如下:
class ViewController: UIViewController, xxxResultReceiver {
func onDecodedBarcodesReceived(_ result: DecodedBarcodesResult) {
// 需要发送结果给 uts 或 uve
}
}
}
问题:想在收到扫码结果后发送给 uts,我知道 swift 发送消息有 2 种方式,delegate 或 notification,但我不知道 uts 里面如何写?有大佬看看吗?谢谢。
0 个回复