objective c - uinavigationcontroller after many push and pop not working -
my uinavigationcontroller not more working after many push , pop. have tested transition´s operations , content of stack of uinavigationcontroller. viewcontrollers nice pushed , popped. after many times tried push viewcontroller.
this 1 added stack view not showing, , app blocked. have tried debug can not become exception.
i think problem view of new pushed viewcontroller not showing.
anyone has idea kind of mistake can achieved?
impressumcontroller* impressumvc = [self.storyboard instantiateviewcontrollerwithidentifier:@"impressumcontroller"]; [self.navigationcontroller pushviewcontroller:impressumvc animated:yes]; nslog(@"navigation viewcontrollers %@",self.navigationcontroller.viewcontrollers);
popping code.
[self.navigationcontroller popviewcontrolleranimated:yes];
check if view controller being deallocated , memory usage not growing. override - (void)dealloc
function , put there break point check if being reached.
Comments
Post a Comment