Specific question based on my implementation is:
Question:
- have a UIViewController which has a some views within it (configured in an XIB file)
- when something occurs in one of the controls on the screen here (i.e. in one of the views), how can I update a UIViewController parameter at the same time?
Background:
- In my case I have a colorPickerController, and within this there are some subview which the user interacts with the select the color
- when the user is dragging the mouse over one of the subviews, one of the other others is updated with the color
- what I'm not sure of is how to also keep the main colorPickerController parameter updated with the latest color that is being selected
- hence the question how to update/access a controller's parameter from within one of the views within a controller