ios - UIPickerView Only Responds Within Area of Tab Bar -
ios - UIPickerView Only Responds Within Area of Tab Bar - i'm updating app ios 8 , trying recreate uipickerview within uiactionsheet uialertcontroller described here. using reply nada gamal, able recreate functionality, uipickerview responds within tab bar (even though tab bar hidden behind picker view). tab bar controller root view controller. -(void)loadpickerview{ uipickerview *pickerview = [[uipickerview alloc] initwithframe:cgrectmake(0.0, 44.0, 0.0, 0.0)]; pickerview.showsselectionindicator = yes; pickerview.datasource = self; pickerview.delegate = self; pickerview.backgroundcolor = [uicolor whitecolor]; [pickerview selectrow:pickerviewrow incomponent:0 animated:no]; uitoolbar *pickertoolbar = [[uitoolbar alloc] initwithframe:cgrectmake(0, 0, self.view.frame.size.width, 44)]; pickertoolbar.tintcolor = self.navigationcontroller.navigationbar.tintcolor; nsmutablearray *baritems = [[nsmutablearray alloc] init]; uibarbutton...