You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I saw the code , when the version is less than 10.0, the overlay 's height is heighter 20 than before. if (SYSTEM_VERSION_LESS_THAN(@"10.0")) { self.overlay = [[UIView alloc] initWithFrame:CGRectMake(0, -20, CGRectGetWidth(self.bounds), CGRectGetHeight(self.bounds) + 20)]; } else { self.overlay = [[UIView alloc] initWithFrame:CGRectMake(0, 0, CGRectGetWidth(self.bounds), CGRectGetHeight(self.bounds) + 20)]; }
The text was updated successfully, but these errors were encountered:
I saw the code , when the version is less than 10.0, the overlay 's height is heighter 20 than before.
if (SYSTEM_VERSION_LESS_THAN(@"10.0")) { self.overlay = [[UIView alloc] initWithFrame:CGRectMake(0, -20, CGRectGetWidth(self.bounds), CGRectGetHeight(self.bounds) + 20)]; } else { self.overlay = [[UIView alloc] initWithFrame:CGRectMake(0, 0, CGRectGetWidth(self.bounds), CGRectGetHeight(self.bounds) + 20)]; }
The text was updated successfully, but these errors were encountered: