We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The problem: could not change FUISegmentedControl's font, background ... on various state (ios 6.1) Fix:
FUISegmentedControl
Replace: if ([[[UIDevice currentDevice] systemVersion] compare:@"6.0" options:NSNumericSearch] != NSOrderedAscending) in setupFont method inside FUISegmentedControl.m with [[[UIDevice currentDevice] systemVersion] floatValue] >= 7
if ([[[UIDevice currentDevice] systemVersion] compare:@"6.0" options:NSNumericSearch] != NSOrderedAscending)
setupFont
FUISegmentedControl.m
[[[UIDevice currentDevice] systemVersion] floatValue] >= 7
Reason: the first one doesn't include ios 6.1
I'm new to github, doesn't know how to use pull/pork/merge ....
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The problem: could not change
FUISegmentedControl
's font, background ... on various state (ios 6.1)Fix:
Replace:
if ([[[UIDevice currentDevice] systemVersion] compare:@"6.0" options:NSNumericSearch] != NSOrderedAscending)
in
setupFont
method insideFUISegmentedControl.m
with
[[[UIDevice currentDevice] systemVersion] floatValue] >= 7
Reason: the first one doesn't include ios 6.1
I'm new to github, doesn't know how to use pull/pork/merge ....
The text was updated successfully, but these errors were encountered: