I am trying to show the picker view immediately after the the viewDidLoad
method get called. But, the UITabBar
block some parts of picker view from displaying. How to bring the picker view to the front of the UITabBar
? The pickerview is a UIView
subclass. The code:
- (void)viewDidLoad
{
[super viewDidLoad];
self.pickerView = [[AllPickerView alloc] initWithdelegate:self];
[self.pickerView showInView:self.view];
}