I am making a chatting application. I have a separated nib view (ActionButtonsView) for the content of scroll view since it's difficult to edit in storyboard, and I may use different nibs for the content of the same scroll view (e.g. ActionButtonsView, Emoji view, etc)
The file owner of the nib view is ActionButtonsView class, however, I need to connect the buttons to ChatViewController (instead of ActionButtonsView) to trigger some actions. The ChatViewController is in storyboard, not nib.
How can I do that?