iOS Back Button Vertical Position
iOS Back Button Vertical Position I have a custom back button in my app in the Navigation Bar and for the life of me, cannot figure out why it is being pushed up. It is in normal position in iOS 11.0 and up, but for any version below 11.0, the image is pushed slightly up vertically (with the top of the button touching the bottom of the status bar). App Delegate Code: func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { let navigationBarAppearace = UINavigationBar.appearance() UINavigationBar.appearance().backIndicatorImage = UIImage(named: "backButton") UINavigationBar.appearance().backIndicatorTransitionMaskImage = UIImage(named: "backButton") UIBarButtonItem.appearance().setBackButtonTitlePositionAdjustment(UIOffset(horizontal: 5.0, vertical: -60.0), for: .default) Has anyone else encountered this? Edit: Added two screenshots. First one shows on simulator in iOs 9.3 ...