Skip to content

Instantly share code, notes, and snippets.

@freddyh
Last active April 6, 2019 02:48
Show Gist options
  • Save freddyh/ff646e24dce960047200b21edcfb0baa to your computer and use it in GitHub Desktop.
Save freddyh/ff646e24dce960047200b21edcfb0baa to your computer and use it in GitHub Desktop.
Navigation Bar w/o Underline
//
// UINavigationBar+Extensions.swift
// Reels
//
// Created by Freddy Hernandez on 4/5/19.
// Copyright © 2019 POP, Inc. All rights reserved.
//
import UIKit
extension UINavigationBar {
/**
Removes the line that appears on the bottom of every UINavigationBar
*/
public func hideBottomBorder() {
setBackgroundImage(UIImage(), for: UIBarMetrics.default)
shadowImage = UIImage()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment