I'm not using storyboards and need to know how to resize and reposition the left bar button. The image I'm using is too big and not far enough to the left.
let leftBarItem = UIBarButtonItem(image: (image), landscapeImagePhone: (image), style: .plain, target: self, action: nil)
self.navigationItem.leftBarButtonItem = leftBarItem
This code makes this -
But I need it to look like this -
I would rather not go back and resize the actual image in Photoshop. What are my options? Thank you!

