TLYShyNavBar
TLYShyNavBar copied to clipboard
Cannot work on iPhone X.
Related to:
/* The standard status bar is 20 pixels. The navigation bar extends 20 pixels up so it is overlapped by the status bar.
* When there is a larger than 20 pixel status bar (e.g. a phone call is in progress or GPS is active), the center needs
* to shift up 20 pixels to avoid this 'dead space' being visible above the usual nav bar.
*/
if (statusBarHeight > 20)
{
statusBarHeight -= 20;
}
This seems pretty urgent
There are quite a few forks of this that seem to have corrected for this, like this one: https://github.com/receipt-bank/TLYShyNavBar/blob/f4004c7b1ce0989b4ab60dfc465554fb94f2883c/TLYShyNavBar/ShyControllers/TLYShyStatusBarController.m
@winzig Thank you.
Thank you
@winzig Nice job! Thank you.