Reputation: 765
I'm trying to make left inset for custom UIBackButtonItem (there should be place for image), but this method just do nothing. Why?
[item setTitlePositionAdjustment:UIOffsetMake(100, 0) forBarMetrics:UIBarMetricsDefault]
Upvotes: 5
Views: 1381
Reputation: 2579
Try the following method:
- (void)setBackButtonTitlePositionAdjustment:(UIOffset)adjustment forBarMetrics:(UIBarMetrics)barMetrics
Upvotes: 6