Whoever comes across this message, we had a similar problem in our project. The reason was that we were storing UIWindow
inside UIViewController
object and rootViewController
of that UIWindow
was self
(UIViewController object). So, before removing references to that UIWindow
so that ARC could deallocate this object, we needed to do rootViewController = nil
and the crash was gone.