Sheeeeeeeeet lets you create menus. These menus can then be used as context menus, action sheets or in any way you like, in UIKit or in SwiftUI.
Sheeeeeeeeet comes with many item types (standard items, buttons, titles, toggles etc.) and can be extended with custom ones.
Sheeeeeeeeet's custom action sheets can be styled to look just like UIAlertController
s or completely different. You can also customize how they are presented and dismissed.
The easiest way to add Sheeeeeeeeet to your project in Xcode 11 is to use Swift Package Manager:
https://github.com/danielsaidi/Sheeeeeeeeet.git
pod "Sheeeeeeeeet"
github "danielsaidi/Sheeeeeeeeet"
IMPORTANT
There is currently problems with the Carthage installation, which cause Apple to reject apps that pull in Sheeeeeeeeeeet with Carthage. See this issue for more information. Until it's solved, use SPM or CocoaPods instead.
To add Sheeeeeeeeet
to your app without a dependency manager, clone this repository, add Sheeeeeeeeet.xcodeproj
to your project and Sheeeeeeeeet.framework
as an embedded app binary and target dependency.
With Sheeeeeeeeet, you start off by creating a menu, like this:
let item1 = MenuItem(title: "Int", value: 1)
let item2 = MenuItem(title: "Car", value: Car())
let button = OkButton(title: "OK")
let items = [item1, item2, button]
let menu = Menu(title: "Select a type", items: items)
There are many built-in menu item types, e.g. selectable items, links, buttons, titles, collections, custom items etc. A complete list can be found here.
You can then present the menu as a custom action sheet:
let sheet = menu.toActionSheet(...) { sheet, item in ... }
sheet.present(in: vc, from: view, ...)
You can find more information in this action sheet guide. You can also read more about styling the sheets in this appearance and styling guide.
You can also apply the menu as an iOS 13 context menu to any view you like:
menu.addAsContextMenu(to: view, action: ...)
You can find more information in this context menu guide.
You can also present the menu as a UIAlertController
:
let delegate = menu.presentAsAlertController(in: self, from: view, action: ...)
You can find more information in [this alert controller guide][Alert-Controllers].
When you have the basics under control, check out this advanced example to see how you can take things further.
This repository contains a demo app that demonstrates different menus and menu items, including subclassing and appearance adjustments. To try it out, open and run the Sheeeeeeeeet.xcodeproj
project.
Feel free to reach out if you have questions or if you want to contribute in any way:
- E-mail: [email protected]
- Twitter: @danielsaidi
- Web site: danielsaidi.com
Sheeeeeeeeet is available under the MIT license. See LICENSE file for more info.