
UIKit drop down menu, simple yet flexible and written in Swift
DropDownMenuKit is a custom UIKit control for iOS that allows you to show a menu attached to the navigation bar or toolbar. The menu appears with a sliding animation and can be customized with icons, embedded controls, or a checkmark to denote a selected row among multiple menu cells.
"github "DropDownMenuKit"carthage update to build the frameworkDropDownMenuKit.framework into your Xcode projectuse_frameworks!
target 'YourTargetName' do
pod 'DropDownMenuKit'
end
pod install with CocoaPods 1.9 or newerDropDownMenuKit framework and drop it into your Xcode project.DropDownMenu.swift, DropDownMenuCell.swift, DropDownTitleView.swift, and DropDownMenuKit.xcassets.If you are using DropDownMenuKit in an app extension, you need to make sure to add the following flag to your Build Settings:
-DAPP_EXTENSION to DropDownMenuKit > Build Settings > Other Swift Flags.DropDownMenuKit is a versatile UIKit control for iOS that allows you to easily add a customizable menu to your navigation bar or toolbar. With its support for icons, embedded controls, and checkmarks, you can create a rich and interactive menu experience for your users. The installation process is straightforward, with options for using Carthage, CocoaPods, or manual integration. Overall, DropDownMenuKit offers a convenient solution for implementing menus in your iOS apps.
