Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Are you sure that you should continue to use the library, how outdated it is, that it is not able to adequately resize elements depending on the screen?
In general, I found the problem in the obsolete tobacco CRTabBarController The
library https://github.com/consumerreports/crtabbar/tree/m... used
this hack
- (id)init
{
if(self == [super init])
{
screenHeight = SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"7.0") ? 480.0f : 460.0f;
screenHeight = IS_IPHONE_5 ? 568.0f : screenHeight;
screenHeight = IS_IPHONE_6 ? 667.0f : screenHeight;
screenHeight = IS_IPHONE_6_P ? 736.0f : screenHeight;
}
return self;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question