Различные массивы UIKeyCommand для различных контроллеров представления в Swift - PullRequest
0 голосов
/ 24 ноября 2018

У меня проблема с UIKeyCommand в Swift.У меня есть два UIViewVontroller, ProjectsViewController и ViewController.Я открываю ViewController из ProjectsViewController, используя этот код:

let editor = self.storyboard?.instantiateViewController(withIdentifier: "editor")
self.present(editor!, animated: true, completion: nil)

В моем классе ProjectsViewController у меня есть UIKeyCommands:

override var keyCommands: [UIKeyCommand]?
{
  if #available(iOS 9.0, *)
  {
    return [
      UIKeyCommand(input: "n", modifierFlags: .command, action: #selector(projectWizard), discoverabilityTitle: "Create new project"), UIKeyCommand(input: "t", modifierFlags: .command, action: #selector(toolsAction), discoverabilityTitle: "Open Tools"), UIKeyCommand(input: ",", modifierFlags: .command, action: #selector(settingsAction), discoverabilityTitle: "Open Settings"), UIKeyCommand(input: "i", modifierFlags: .command, action: #selector(aboutAction), discoverabilityTitle: "About")
    ]
  }
  else
  {
    return nil
  }
}

И в ViewController У меня есть другое:

override var keyCommands: [UIKeyCommand]?
{
  if #available(iOS 9.0, *)
  {
    return [
      UIKeyCommand(input: "n", modifierFlags: .command, action: #selector(addFileAction), discoverabilityTitle: "New file"), UIKeyCommand(input: "r", modifierFlags: .command, action: #selector(runProject), discoverabilityTitle: "Build and run"), UIKeyCommand(input: "w", modifierFlags: .command, action: #selector(closeProject), discoverabilityTitle: "Close window")
    ]
  }
  else
  {
    return nil
  }
}

Когда мое приложение отображает ProjectsViewController, я нажал cmd для Обнаружения на своем iPad, и он представляет комбинации для ProjectsViewController, но после того, как я открыл ViewController и нажмите cmd, Обнаружение показывает обе комбинации для ProjectsViewController и ViewController.Как я могу разделить сочетания клавиш для каждого класса?Спасибо за Ваше внимание.

...