In my app I have a UIViewController to which I wish to add a UITabBar. So I have added it via User Interface (into the UIViewController.xib file) and created instances of the IUTabBar and the UITabBarItems within the UIViewController.h+m files. in the xib file I was able to connect the code items to the ones on the xib (by dragging from the File Owner to the relevant item and selecting the relevant IBOutlet) but I cannot seem to connect back the buttons to the IBActions written on the h+m files.

Before adding the UITabBar I worked with a UIToolBar and had no problem doing these connections.

Can anyone explain what am I doing wrong?

link|improve this question

69% accept rate
feedback

2 Answers

You should implement the UITabBarDelegate protocol (documentation here).

Once you are implementing this protocol, just use the - (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item method to know when a user changes the selected item of a tab bar. In this method's implementation, you will have to check which item is selected, and manually change your view's content based on that.

link|improve this answer
Thanks Alex, I have some clarifications: – Ohad Regev Jul 24 '11 at 11:27
1. When you say "You should implement the UITabBarDelegate protocol" you mean to add to my UIViewController.h file the UITabBarDelegate inheritance? like this: @interface HowDoButtonsView : UIViewController <UITabBarDelegate> – Ohad Regev Jul 24 '11 at 11:28
2. How exactly am I supposed to use the method "- (void)tabBar:(UITabBar *)..."? am I supposed to have it someplace within another method in my code or to call it using "IBAction"? – Ohad Regev Jul 24 '11 at 11:30
feedback
up vote 0 down vote accepted

I found a very nice tutorial via this link.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.