Skip to content

NilStack/NKDropdownMenu

Repository files navigation

NKDropdownMenu

Build Verision License

A drop down menu inspired by https://dribbble.com/shots/2286361-Hamburger-Menu-Animation. It's not exactly the same as the original design because i don't figure out some details. Please pull request if you can make it better.

gif

##Usage##

###Cocoapods###

 pod 'NKDropdownMenu'

###Copy NKDropdownMenu folder to your project ###

##Examples##

    let items = ["Most Popular", "Latest", "Trending", "Nearest", "Top Picks"]

    let hamburgerMenu: NKDropdownMenu = NKDropdownMenu(items: items)

    hamburgerMenu.didSelectItemAtIndexHandler = {(indexPath: Int) -> () in
        print("Did select item at index: \(indexPath)")

    }

    self.navigationItem.leftBarButtonItem = UIBarButtonItem(customView: hamburgerMenu)

##TODO##

  • more testing
  • make details better

##License## This code is distributed under the terms and conditions of the MIT license.

##Thanks## Awesome design by Gal Shir

Elegant dropdown menu BTNavigationDropdownMenu by Pham Ba Tho