├── .gitignore ├── Example.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Example ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── SceneDelegate.swift ├── LICENSE ├── README.md ├── Source ├── ChidoriAnimationController.swift ├── ChidoriMenu.swift ├── ChidoriMenuTableViewCell.swift ├── ChidoriPresentationController.swift └── ExampleViewController.swift ├── chidori-menu.png └── ios-context-menu.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianselig/ChidoriMenu/HEAD/.gitignore -------------------------------------------------------------------------------- /Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianselig/ChidoriMenu/HEAD/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianselig/ChidoriMenu/HEAD/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianselig/ChidoriMenu/HEAD/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianselig/ChidoriMenu/HEAD/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianselig/ChidoriMenu/HEAD/Example/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianselig/ChidoriMenu/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianselig/ChidoriMenu/HEAD/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianselig/ChidoriMenu/HEAD/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianselig/ChidoriMenu/HEAD/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianselig/ChidoriMenu/HEAD/Example/Info.plist -------------------------------------------------------------------------------- /Example/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianselig/ChidoriMenu/HEAD/Example/SceneDelegate.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianselig/ChidoriMenu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianselig/ChidoriMenu/HEAD/README.md -------------------------------------------------------------------------------- /Source/ChidoriAnimationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianselig/ChidoriMenu/HEAD/Source/ChidoriAnimationController.swift -------------------------------------------------------------------------------- /Source/ChidoriMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianselig/ChidoriMenu/HEAD/Source/ChidoriMenu.swift -------------------------------------------------------------------------------- /Source/ChidoriMenuTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianselig/ChidoriMenu/HEAD/Source/ChidoriMenuTableViewCell.swift -------------------------------------------------------------------------------- /Source/ChidoriPresentationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianselig/ChidoriMenu/HEAD/Source/ChidoriPresentationController.swift -------------------------------------------------------------------------------- /Source/ExampleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianselig/ChidoriMenu/HEAD/Source/ExampleViewController.swift -------------------------------------------------------------------------------- /chidori-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianselig/ChidoriMenu/HEAD/chidori-menu.png -------------------------------------------------------------------------------- /ios-context-menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christianselig/ChidoriMenu/HEAD/ios-context-menu.gif --------------------------------------------------------------------------------