iphone - popViewControllerAnimated animation not working in iOS5 -
iphone - popViewControllerAnimated animation not working in iOS5 -
trying previous viewcontroller, animation in ios5 not working.
- (ibaction)backtopreviouscontroller { [self.navigationcontroller popviewcontrolleranimated:yes]; }
can help me?
from op, davey jones~
problem solved adding animation manually
catransition *transition = [catransition animation]; transition.duration = 0.5; transition.timingfunction = [camediatimingfunction functionwithname:kcamediatimingfunctiondefault]; transition.type = kcatransitionpush; transition.subtype = kcatransitionfromleft; [self.navigationcontroller.view.layer addanimation:transition forkey:nil];
iphone sdk uinavigationcontroller ios5 poptoviewcontroller
Comments
Post a Comment