mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-04-28 12:04:59 +08:00
18 lines
359 B
Swift
18 lines
359 B
Swift
//
|
|
// UIViewController+EmptyBackBar.swift
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 10/4/17.
|
|
// Copyright © 2017 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
extension UIViewController {
|
|
|
|
func makeBackBarItemEmpty() {
|
|
navigationItem.backBarButtonItem = UIBarButtonItem(title: " ", style: .plain, target: nil, action: nil)
|
|
}
|
|
|
|
}
|