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

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

android - Keyboard hides my half of edit-text and button below it even in scroll view -