Integrating Kal Calendar into My Tab Panel:

I am developing an application for the iPad and is relatively new in the business. I am trying to integrate the Kal calendar into the Tab element that appears after entering the application. But could not do it.

+5
source share
1 answer

If you are trying to show the full screen controller after selecting a tab bar item. You want your tab bar item controller to be of type KalViewController. If you do this in the UI builder, you will have the tab bar controller as the source view, and then drag the UIViewController onto the storyboard. Change this view controller class to KalViewController and add it to the elements of the tab bar view controller.

If you do this in code, create an instance of KalViewController and add it to the UITabBarController elements:

KalViewController *kalVC = [[KalViewController alloc] init];
//set your tab bar items, assuming you have a ref to the tab bar
tabBarController.tabBar setItems:@[kalVC,otherVC];
+1
source

All Articles