ios - Animations disappear when popViewController sometimes under ios9 -
when call [self.navigationcontroller popviewcontrollers animated:yes]
, view controller keyboard, animations push/pop not work, , whole animations disappear (include custom animations).
i think it's error ios 9 keyboard. when build empty project has 2 view controllers, first 1 pushes second , second 1 has keyboard. when textfield
or uitextview
editing , pops first one, memory leaks occur. happens in ios 9. think reason why whole animations disappear.
anyone know why keyboard messes animation?
the keyboard misses animations because 2 animations happening in same time.. keyboard dissmis , popviewcontroller animations.
try resigning first responder first [self.view endediting:yes];
or [textfield resignfirstresponder];
can pop view [self.navigationcontroller popviewcontrollers animated:yes]
Comments
Post a Comment