I just create a new class in Swift, it\'s called myViewController and it\'s a UIViewController. Now I\'m trying to make it a UIPickerViewDelegate
myViewController
UIViewController
My problem was that I had override in front of the implementation function, where Swift doesn't consider protocol method implementations to be overrides (same). Just taking out the override keyword fixed the issue.
override