You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using @try...@catch to "discover" segues results in MMDrawerController (and all its child view controllers) to be leaked if at least one the segue does not exist.
It seems that UIKit is retaining the view controller sending performSegueWithIdentifier:sender:, and if the segue does not exists the exception raised causes UIKit to never release the view controller.
The text was updated successfully, but these errors were encountered:
Using
@try...@catch
to "discover" segues results in MMDrawerController (and all its child view controllers) to be leaked if at least one the segue does not exist.It seems that UIKit is retaining the view controller sending
performSegueWithIdentifier:sender:
, and if the segue does not exists the exception raised causes UIKit to never release the view controller.The text was updated successfully, but these errors were encountered: