├── .gitignore ├── DesignLayoutKitSample.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── xcshareddata │ └── xcschemes │ │ └── DesignOverlayKit.xcscheme └── xcuserdata │ └── rhiramat.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── DesignLayoutKitSample.xcscheme │ └── xcschememanagement.plist ├── DesignOverlayKit.podspec ├── DesignOverlayKit ├── DesignOverlay.swift ├── DesignOverlayKit.h ├── Info.plist └── SettingViewController.swift ├── Example ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── PhotoCell.swift ├── PhotoDetailViewController.swift └── ViewController.swift ├── LICENSE ├── README.md └── misc ├── demo.gif ├── screenshot1.png ├── screenshot2.png └── screenshot3.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/.gitignore -------------------------------------------------------------------------------- /DesignLayoutKitSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/DesignLayoutKitSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DesignLayoutKitSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/DesignLayoutKitSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DesignLayoutKitSample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/DesignLayoutKitSample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /DesignLayoutKitSample.xcodeproj/xcshareddata/xcschemes/DesignOverlayKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/DesignLayoutKitSample.xcodeproj/xcshareddata/xcschemes/DesignOverlayKit.xcscheme -------------------------------------------------------------------------------- /DesignLayoutKitSample.xcodeproj/xcuserdata/rhiramat.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/DesignLayoutKitSample.xcodeproj/xcuserdata/rhiramat.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /DesignLayoutKitSample.xcodeproj/xcuserdata/rhiramat.xcuserdatad/xcschemes/DesignLayoutKitSample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/DesignLayoutKitSample.xcodeproj/xcuserdata/rhiramat.xcuserdatad/xcschemes/DesignLayoutKitSample.xcscheme -------------------------------------------------------------------------------- /DesignLayoutKitSample.xcodeproj/xcuserdata/rhiramat.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/DesignLayoutKitSample.xcodeproj/xcuserdata/rhiramat.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DesignOverlayKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/DesignOverlayKit.podspec -------------------------------------------------------------------------------- /DesignOverlayKit/DesignOverlay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/DesignOverlayKit/DesignOverlay.swift -------------------------------------------------------------------------------- /DesignOverlayKit/DesignOverlayKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/DesignOverlayKit/DesignOverlayKit.h -------------------------------------------------------------------------------- /DesignOverlayKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/DesignOverlayKit/Info.plist -------------------------------------------------------------------------------- /DesignOverlayKit/SettingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/DesignOverlayKit/SettingViewController.swift -------------------------------------------------------------------------------- /Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/Example/Info.plist -------------------------------------------------------------------------------- /Example/PhotoCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/Example/PhotoCell.swift -------------------------------------------------------------------------------- /Example/PhotoDetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/Example/PhotoDetailViewController.swift -------------------------------------------------------------------------------- /Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/Example/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/README.md -------------------------------------------------------------------------------- /misc/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/misc/demo.gif -------------------------------------------------------------------------------- /misc/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/misc/screenshot1.png -------------------------------------------------------------------------------- /misc/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/misc/screenshot2.png -------------------------------------------------------------------------------- /misc/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himaratsu/DesignOverlayKit/HEAD/misc/screenshot3.png --------------------------------------------------------------------------------