在iOS上不显示nativescript-toast

Faa*_*ass 5 nativescript angular2-nativescript

在我更新到最新版本的nativescript-toast之后,它停止了在iOS中的工作(在Android中工作正常)。我的意思是,当应用程序按预期运行时,没有显示吐司。

在以前的版本中,一切都按预期进行。但是,当我更新到新版本后,它停止工作,并且还将pod SBToaster添加到了我的podfile中。

这是package.json

"nativescript-toast": "^2.0.0",
Run Code Online (Sandbox Code Playgroud)

过去我有版本1.4.6

在我的Podfile中,我有:

pod 'SBToaster', '~> 2.1.2'
pod 'Toast'
Run Code Online (Sandbox Code Playgroud)

在我的组件中,我有:

Toast.makeText(message).show();
Run Code Online (Sandbox Code Playgroud)

Man*_*noj 4

我遇到了nativescript-toast最新 SDK 上插件的各种兼容性问题。最简单的方法似乎是切换到nativescript-toasty插件,它更相关且最新。

tns plugin add nativescript-toasty
Run Code Online (Sandbox Code Playgroud)