iphone - How to push uiviewcontroller over tabbarcontroller -
i have tabbar app. each tab has uinavigationcontroller. navigationcontroller's shows navigation bar value no.
i control navgation control active in
-(void)tabbarcontroller:(uitabbarcontroller *)tabbarcontroller didselectviewcontroller:(uiviewcontroller *)viewcontroller
event in appdelegate. user taps row in table in tab call same method (opendetail)in appdelegate. want push detailviewcontroller full screen, not in tabs controller. tried ways never worked. push modalview.
[currentnavcontroller presentmodalviewcontroller:detailvc animated:yes];
how can come/go right side. want work normal rootviewcontroller. new controller should come on tabbarcontroller usa today app.
present view controller this
[tabbarcontroller presentmodalviewcontroller:detailvc animated:yes];
Comments
Post a Comment