nverinaud / NVSlideMenuController

A slide menu done right for iOS.
MIT License
175 stars 33 forks source link

Unbalanced calls to begin/end appearance transitions #17

Closed rolife closed 11 years ago

rolife commented 11 years ago

Hi!

I am call closeMenuAnimated method and then when I push any UIViewController, show this warring:

Unbalanced calls to begin/end appearance transitions for <UIViewController: 0xa4d76d0>.

In contentViewController set UINavigationController.

P.S. Sorry for my English, I am from Ukraine :)

rolife commented 11 years ago

Спустя 12 часов, методом «тыка» нашел решение. И наплевать, что пишу на русском, зато работает!

(From google translate: "12 hours later, by the "spear" has found a solution. I do not care what I write in Russian, but it works!")

[self.menuViewController beginAppearanceTransition:NO animated:animated];
[self.contentViewController beginAppearanceTransition:YES animated:animated];

[self.menuViewController endAppearanceTransition];
[self.contentViewController endAppearanceTransition];
nverinaud commented 11 years ago

Хорошо. Вы изменили код библиотеки где-нибудь? (Okay. Did you change the library code somewhere ?)

Shall we continue in english please ? xD

rolife commented 11 years ago

Good Russian ;)

Did you change the library code somewhere?

No, sorry. I am not good using github. Changes only in my project (local version).

P.s. Thanks for this controller! :)