我正在使用NativeScript构建插件。 当我尝试访问rootViewController上的“ presentViewController”方法时,出现错误“属性presentViewContrller不存在”。
const rvc = UIApplication.sharedApplication.keyWindow.rootViewContrller; rvc.presentViewContrller(myViewController,true,complete(){});
建议使用不接受我的视图控制器的presentViewContrllerAnimatedCompletion。
您能协助我的代码的哪一部分(或可能设置错误)吗?
答案 0 :(得分:0)
正确的方法名称仅为presentViewControllerAnimatedCompletion
。
在将Objective C编组到JS / TS时,应将参数名称与方法名称结合使用。
presentViewController:animated:completion