0

我正在 NativeScript 中构建一个插件。当我尝试访问 rootViewController 上的“presentViewController”方法时,我收到错误“property presentViewContrller 不存在”。

常量 rvc = UIApplication.sharedApplication.keyWindow.rootViewContrller; rvc.presentViewContrller(myViewController, true, completion() {});

它建议使用不接受我的视图控制器的 presentViewContrllerAnimatedCompletion。

您能否帮助我的代码(或者可能是设置!)的哪一部分是错误的?

4

1 回答 1

0

只有正确的方法名称presentViewControllerAnimatedCompletion

在将 Objective C 编组为 JS/TS 时,您应该将参数名称与方法名称结合起来。

presentViewController:animated:completion

于 2018-11-21T09:20:08.060 回答