Я добавил leftBarButtonItem в панель навигации (вместе с NavigationController).LeftBarButtonItem находится на верхнем ViewController.
Когда я использую функцию pushViewController для перехода к следующему ViewController, анимация происходит справа налево, так же, как при нажатии кнопки на правой стороне панели навигации.
Как изменить направление анимации, чтобы оно двигалось слева направо, как, например, в Tinder при нажатии левой кнопки на панели навигации?
Вот код:
let profileButton = UIBarButtonItem(image: #imageLiteral(resourceName: "profile"), style: .plain, target: self, action: #selector(self.showProfile))
self.navigationItem.leftBarButtonItem = profileButton
@objc func showProfile() {
let profileViewController = storyboard?.instantiateViewController(withIdentifier: "profile") as! ProfileViewController
self.navigationController?.pushViewController(profileViewController, animated: true)
}