如何在Swift中使用变量作为文件类型

时间:2015-11-25 09:56:47

标签: swift

在下面的代码中,如何使用变量controllerFileTypeIs动态选择打开新视图控制器时要使用的文件?

pushManager.subscribe({ userVisibleOnly: true }).then(({ endpoint }) => {
  const registrationId = endpoint.split('https://android.googleapis.com/gcm/send/')[1];
  // How do I get this registrationId in service-worker.js below?  
});

1 个答案:

答案 0 :(得分:0)

由于您已经为控制器设置了故事板标识符,因此无需键入任何内容,只需按以下方式进行操作即可。

let vc = storyboard?.instantiateViewControllerWithIdentifier(vcIdentifier!)
self.navigationController?.presentViewController(vc!, animated: true, completion: nil)