Last active
June 20, 2018 20:21
-
-
Save sgoodwin/da4efd60a81d5672e64371d3eedde7a8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class SomeCustomViewController: UIViewController { | |
override var next: UIResponder? { | |
get { | |
return nil | |
} | |
set { | |
return | |
} | |
} | |
} | |
class SomeOtherCustomViewController: UIViewController { | |
override var next: UIResponder? { | |
return nil | |
} | |
} | |
let controller = SomeCustomViewController() | |
let otherController = UIViewController() | |
controller.next = otherController | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment