What is the proper way to accept user input in a view and then transfer it to that view\'s controller? I know the NotificationCenter is one option, but surely there is a more el
You are looking for delegation, where the controller set itselfs as the delegate of the view. You know it from UITableViewDelegate.