I have a view with a controller that descends from UITabBarController. In the nib that is loaded by a tab, I set the File's Owner to a custom UIViewController I have and wired some buttons to it.
When I run it, it works and I see the view. But when I push the button, it crashes with an "unrecognized selector sent to instance". So its not send the linked message where I think it is.
And I appear to be able to set controller type for each tab in IB, but the list doesn't allow me to choose a custom controller class.
So I guess my question is, how do I wire up and respond to actions that happen in a nib loaded by a UITabController? Especially since I cant drag connections between nibs
When I run it, it works and I see the view. But when I push the button, it crashes with an "unrecognized selector sent to instance". So its not send the linked message where I think it is.
And I appear to be able to set controller type for each tab in IB, but the list doesn't allow me to choose a custom controller class.
So I guess my question is, how do I wire up and respond to actions that happen in a nib loaded by a UITabController? Especially since I cant drag connections between nibs