I want to change the size of leftBarButtonItem.
If I go with custom barButtonItem then I would not get the sign of previous on that button.
Here I got success to make small text via setting following code in didFinishLaunchingWithOptions
method.
[[UIBarButtonItem appearanceWhenContainedIn:[UINavigationBar class], nil] setTitleTextAttributes:
@{NSFontAttributeName:[UIFont systemFontOfSize:12.0]} forState:UIControlStateNormal];
But sign of previous is not changing.
Is there any way (other-than set image) to make small that sign?
I have also tried to change scale of that leftBarButtonItem
but there is not method available to do so.