├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .slather.yml ├── .travis.yml ├── DragDropUI.podspec ├── DragDropUI.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── DragDropUI.xcscheme │ └── DragDropUITests.xcscheme ├── DragDropUI.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── DragDropUI ├── DD+View.swift ├── DDButton.swift ├── DDCollectionViewCell.swift ├── DDGestureRecognizer.swift ├── DDImageView.swift ├── DDLabel.swift ├── DDProtocol.swift ├── DDTableViewCell.swift ├── DDTextField.swift ├── DDView.swift ├── DragDropUI.h └── Info.plist ├── DragDropUITests ├── DD+ViewTests.swift ├── DDButtonTests.swift ├── DDImageViewTests.swift ├── DDLabelTests.swift ├── DDTextFieldTests.swift ├── DDViewTests.swift └── Info.plist ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Package.swift ├── Podfile ├── Podfile.lock ├── README.md ├── Sample ├── Sample.xcodeproj │ └── project.pbxproj └── Sample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift └── scripts └── build-framework.sh /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/.gitignore -------------------------------------------------------------------------------- /.slather.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/.slather.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/.travis.yml -------------------------------------------------------------------------------- /DragDropUI.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUI.podspec -------------------------------------------------------------------------------- /DragDropUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DragDropUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DragDropUI.xcodeproj/xcshareddata/xcschemes/DragDropUI.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUI.xcodeproj/xcshareddata/xcschemes/DragDropUI.xcscheme -------------------------------------------------------------------------------- /DragDropUI.xcodeproj/xcshareddata/xcschemes/DragDropUITests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUI.xcodeproj/xcshareddata/xcschemes/DragDropUITests.xcscheme -------------------------------------------------------------------------------- /DragDropUI.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUI.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DragDropUI.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUI.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /DragDropUI/DD+View.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUI/DD+View.swift -------------------------------------------------------------------------------- /DragDropUI/DDButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUI/DDButton.swift -------------------------------------------------------------------------------- /DragDropUI/DDCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUI/DDCollectionViewCell.swift -------------------------------------------------------------------------------- /DragDropUI/DDGestureRecognizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUI/DDGestureRecognizer.swift -------------------------------------------------------------------------------- /DragDropUI/DDImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUI/DDImageView.swift -------------------------------------------------------------------------------- /DragDropUI/DDLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUI/DDLabel.swift -------------------------------------------------------------------------------- /DragDropUI/DDProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUI/DDProtocol.swift -------------------------------------------------------------------------------- /DragDropUI/DDTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUI/DDTableViewCell.swift -------------------------------------------------------------------------------- /DragDropUI/DDTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUI/DDTextField.swift -------------------------------------------------------------------------------- /DragDropUI/DDView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUI/DDView.swift -------------------------------------------------------------------------------- /DragDropUI/DragDropUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUI/DragDropUI.h -------------------------------------------------------------------------------- /DragDropUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUI/Info.plist -------------------------------------------------------------------------------- /DragDropUITests/DD+ViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUITests/DD+ViewTests.swift -------------------------------------------------------------------------------- /DragDropUITests/DDButtonTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUITests/DDButtonTests.swift -------------------------------------------------------------------------------- /DragDropUITests/DDImageViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUITests/DDImageViewTests.swift -------------------------------------------------------------------------------- /DragDropUITests/DDLabelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUITests/DDLabelTests.swift -------------------------------------------------------------------------------- /DragDropUITests/DDTextFieldTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUITests/DDTextFieldTests.swift -------------------------------------------------------------------------------- /DragDropUITests/DDViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUITests/DDViewTests.swift -------------------------------------------------------------------------------- /DragDropUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/DragDropUITests/Info.plist -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/Package.swift -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/README.md -------------------------------------------------------------------------------- /Sample/Sample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/Sample/Sample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sample/Sample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/Sample/Sample/AppDelegate.swift -------------------------------------------------------------------------------- /Sample/Sample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/Sample/Sample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Sample/Sample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/Sample/Sample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Sample/Sample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/Sample/Sample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Sample/Sample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/Sample/Sample/Info.plist -------------------------------------------------------------------------------- /Sample/Sample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/Sample/Sample/ViewController.swift -------------------------------------------------------------------------------- /scripts/build-framework.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdullahselek/DragDropUI/HEAD/scripts/build-framework.sh --------------------------------------------------------------------------------