아미(아름다운미소)

스위프트 - navigation에서 back button을 숨기는 방법 본문

랭귀지/SWIFT

스위프트 - navigation에서 back button을 숨기는 방법

유키공 2018. 6. 1. 09:00

Swift - How to hide back button in navigation item

 override func viewWillAppear(_ animated: Bool) {
      super.viewWillAppear(animated)
      self.navigationItem.hidesBackButton = true
 }
Comments