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
i have a tabbar and when i set isMotionEnabled = true is my viewdidload, after dimiss still have ref strong.. that why make alot instance when i push or present or change root view. so this is my fix !
this is Fix : add weak before var previousNavigationDelegate
File Motion+UIViewController.swift !
A reference to the previous navigation controller delegate
before Motion was enabled.
*/
weak var previousNavigationDelegate: UINavigationControllerDelegate?
/**
A reference to the previous tab bar controller delegate
before Motion was enabled.
*/
weak var previousTabBarDelegate: UITabBarControllerDelegate?
The text was updated successfully, but these errors were encountered:
i have a tabbar and when i set isMotionEnabled = true is my viewdidload, after dimiss still have ref strong.. that why make alot instance when i push or present or change root view. so this is my fix !
this is Fix : add weak before var previousNavigationDelegate
File Motion+UIViewController.swift !
The text was updated successfully, but these errors were encountered: