mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
12 lines
227 B
Swift
12 lines
227 B
Swift
#if os(iOS)
|
|
|
|
import UIKit
|
|
|
|
extension UINavigationController {
|
|
// Remove back button text
|
|
override open func viewWillLayoutSubviews() {
|
|
navigationBar.topItem?.backButtonDisplayMode = .minimal
|
|
}
|
|
}
|
|
|
|
#endif
|