Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

iOS 6 support in latest version broken #46

Open
AcidicSkittles opened this issue Mar 20, 2015 · 1 comment
Open

iOS 6 support in latest version broken #46

AcidicSkittles opened this issue Mar 20, 2015 · 1 comment

Comments

@AcidicSkittles
Copy link

The latest version crashes when ran on iOS 6. The reason is because of line 122 in RDVTabBarController.m.

[self setNeedsStatusBarAppearanceUpdate];

Needs changed to:

if ([self respondsToSelector:@selector(setNeedsStatusBarAppearanceUpdate)]) 
{
        [self setNeedsStatusBarAppearanceUpdate];
}
@langhua9527
Copy link

me too

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants