Showing
2 changed files
with
6 additions
and
1 deletions
No preview for this file type
... | @@ -9,5 +9,10 @@ import Foundation | ... | @@ -9,5 +9,10 @@ import Foundation |
9 | import UIKit | 9 | import UIKit |
10 | 10 | ||
11 | @objc public class CouponsViewController: UIViewController { | 11 | @objc public class CouponsViewController: UIViewController { |
12 | - | 12 | + public override func viewWillAppear(_ animated: Bool) { |
13 | + super.viewWillAppear(animated) | ||
14 | + self.navigationController?.navigationBar.topItem?.title = "" | ||
15 | + | ||
16 | + self.navigationController?.navigationBar.backIndicatorImage = UIImage(contentsOfFile: "ic_back") | ||
17 | + } | ||
13 | } | 18 | } | ... | ... |
-
Please register or login to post a comment