UIBarButtonItem.appearance().setBackButtonTitlePositionAdjustment(UIOffsetMake(0, -60), for:UIBarMetrics.default)
I use above to remove the backButtonTitle prior to iOS 11. But on iOS 11 that is not properly working.
Arrow shifts bit downwards.
How to fix this?
Edit: Other way by erasing Title can solve my problem but my concern is why that old way is not working anymore.