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
I am using RDVTabBarControler How to adjust UI on iPhoneXR safe area layout guides.
Xcode 10.1 Swift 4.2
Please help Thanks
The text was updated successfully, but these errors were encountered:
I have the same issue
Sorry, something went wrong.
Please follow the below steps to resolve the issue. Pods -> Pods -> RDVTabBarControllerSwift -> Open UIDevice+RDVTabBar.swift
Add below code on UIDevice+RDVTabBar.swift fileprivate let IPHONEXR_HEIGHT: CGFloat = 896
internal func isIphoneXR() -> Bool { return UIDevice.current.isIphoneXR() }
Open RDVTabBarController.Swift file add isIphoneXR() code on else if
if isIphoneX() { tabBarContainerHeight = TABBAR_HEIGHT_IPHONE_X }else if isIphoneXR() { tabBarContainerHeight = TABBAR_HEIGHT_IPHONE_X }
Please let me know if issue is solved on your case.
No branches or pull requests
I am using RDVTabBarControler How to adjust UI on iPhoneXR safe area layout guides.
Xcode 10.1
Swift 4.2
Please help
Thanks
The text was updated successfully, but these errors were encountered: