यहाँ उत्तर का एक संस्करण है
स्विफ्ट 5
कि आप इसे स्टोरीबोर्ड से उपयोग कर सकते हैं:
// MARK: - Hiding Back Button
extension UINavigationItem {
/// A Boolean value that determines whether the back button is hidden.
///
/// When set to `true`, the back button is hidden when this navigation item
/// is the top item. This is true regardless of the value in the
/// `leftItemsSupplementBackButton` property. When set to `false`, the back button
/// is shown if it is still present. (It can be replaced by values in either
/// the `leftBarButtonItem` or `leftBarButtonItems` properties.) The default value is `false`.
@IBInspectable var hideBackButton: Bool {
get { hidesBackButton }
set { hidesBackButton = newValue }
}
}
व्यू कंट्रोलर के हर नेविगेशन आइटम में यह नया गुण गुण निरीक्षक के शीर्ष भाग में होगा