I am facing an issue on Navigation bar items in iOS 11 as below screen shot and the two bar button also not executing any button actions.
It is working perfectly on iOS 10.x.x and below with same auto layouts and size. Following screenshot is showing how custom Navigation bar IB implemented. .
I tried with following codes too..
if (@available(iOS 11.0, *)) {
[[self navigationController] navigationBar].prefersLargeTitles = NO;
[[self navigationController] navigationItem].largeTitleDisplayMode = UINavigationItemLargeTitleDisplayModeNever;
}
..but not helping. Please suggests me what's the issue here and how to fix (any autolayout issues ?).