I am drawing a custom view (UIDatePicker) over my table view which is nested within a UITabBarController. When I add my custom view as below, it gets clipped by the tab bar.
[self.view addSubview:customDateView];
Does anyone have a recommendation on how to go around this? Can I hide the tab bar?
Thanks in advance, Ricky.