Closed SquaredTiki closed 10 years ago
In iOS 8, on occasion such as when an alert view is dismissed, the following code causes an infinite loop whereby it repeatedly calls itself:
- (UIViewController *)rootViewController { return [[UIApplication sharedApplication] keyWindow].rootViewController; }
This I assume is caused by the fact that MTStatusBarOverlay has become key window and thus is trying to access the rootViewController repeatedly on itself
MTStatusBarOverlay
rootViewController
Also, is this project still maintained?
In iOS 8, on occasion such as when an alert view is dismissed, the following code causes an infinite loop whereby it repeatedly calls itself:
This I assume is caused by the fact that
MTStatusBarOverlay
has become key window and thus is trying to access therootViewController
repeatedly on itself