I am setting a back button using navigtaionItem's leftItemsSupplementBackButton, and then setting a UIBarButtonItem as my leftBarButton. The problem is that the button is too far from the back button. How can I control its location and make it adjacent to the back button?
Below sample code sets the back button and the left bar button item.
UIBarButtonItem* bla = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"delete"] style:UIBarButtonItemStyleDone target:self action:nil];
self.navigationItem.leftItemsSupplementBackButton = YES;
self.navigationItem.leftBarButtonItem = bla;
Please find the attached screenshot.
Thanks!

