myell0w / MTStatusBarOverlay

A custom iOS status bar overlay seen in Apps like Reeder, Evernote and Google Mobile App
MIT License
1.92k stars 325 forks source link

Infinite loop in [MTStatusBarOverlay rootViewController] #87

Closed SquaredTiki closed 10 years ago

SquaredTiki commented 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

SquaredTiki commented 10 years ago

Also, is this project still maintained?