MBPullDownController
MBPullDownController copied to clipboard
Regarding TabbarController on Front View
Hi Matej, I embedded a TabbarController to the front view controller (subclass of scrollview)and the tab bar is not visible when in action.The rest of the things are working fine.Also I tried adding it programatically .but the tab bar scrolls with the view.Please help
My code snippet as below
FrontViewController *front = [self.storyboard instantiateViewControllerWithIdentifier:@"front"];
MBPullDownController *pullDownController=[[MBPullDownController alloc]initWithFrontController:front backController:self];
[self.navigationController addChildViewController:pullDownController];
