├── .gitignore ├── Images ├── arrow_down.png ├── arrow_down@2x.png └── arrow_down@3x.png ├── LGDragDrop.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── LGDragDrop.xccheckout │ └── xcuserdata │ │ └── lukagabric.xcuserdatad │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── lukagabric.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── LGDragDrop.xcscheme │ ├── LGDragDropSwift.xcscheme │ └── xcschememanagement.plist ├── LGDragDrop ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── LGDragDropViewController.h ├── LGDragDropViewController.m ├── LGDragDropViewController.xib ├── ViewController.h ├── ViewController.m └── main.m ├── LGDragDropSwift ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── LGDragDropViewController.swift ├── LGDragDropViewController.xib └── ViewController.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/Images/arrow_down.png -------------------------------------------------------------------------------- /Images/arrow_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/Images/arrow_down@2x.png -------------------------------------------------------------------------------- /Images/arrow_down@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/Images/arrow_down@3x.png -------------------------------------------------------------------------------- /LGDragDrop.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDrop.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LGDragDrop.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDrop.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LGDragDrop.xcodeproj/project.xcworkspace/xcshareddata/LGDragDrop.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDrop.xcodeproj/project.xcworkspace/xcshareddata/LGDragDrop.xccheckout -------------------------------------------------------------------------------- /LGDragDrop.xcodeproj/project.xcworkspace/xcuserdata/lukagabric.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDrop.xcodeproj/project.xcworkspace/xcuserdata/lukagabric.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /LGDragDrop.xcodeproj/xcuserdata/lukagabric.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDrop.xcodeproj/xcuserdata/lukagabric.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /LGDragDrop.xcodeproj/xcuserdata/lukagabric.xcuserdatad/xcschemes/LGDragDrop.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDrop.xcodeproj/xcuserdata/lukagabric.xcuserdatad/xcschemes/LGDragDrop.xcscheme -------------------------------------------------------------------------------- /LGDragDrop.xcodeproj/xcuserdata/lukagabric.xcuserdatad/xcschemes/LGDragDropSwift.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDrop.xcodeproj/xcuserdata/lukagabric.xcuserdatad/xcschemes/LGDragDropSwift.xcscheme -------------------------------------------------------------------------------- /LGDragDrop.xcodeproj/xcuserdata/lukagabric.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDrop.xcodeproj/xcuserdata/lukagabric.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LGDragDrop/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDrop/AppDelegate.h -------------------------------------------------------------------------------- /LGDragDrop/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDrop/AppDelegate.m -------------------------------------------------------------------------------- /LGDragDrop/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDrop/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /LGDragDrop/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDrop/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LGDragDrop/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDrop/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LGDragDrop/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDrop/Info.plist -------------------------------------------------------------------------------- /LGDragDrop/LGDragDropViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDrop/LGDragDropViewController.h -------------------------------------------------------------------------------- /LGDragDrop/LGDragDropViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDrop/LGDragDropViewController.m -------------------------------------------------------------------------------- /LGDragDrop/LGDragDropViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDrop/LGDragDropViewController.xib -------------------------------------------------------------------------------- /LGDragDrop/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDrop/ViewController.h -------------------------------------------------------------------------------- /LGDragDrop/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDrop/ViewController.m -------------------------------------------------------------------------------- /LGDragDrop/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDrop/main.m -------------------------------------------------------------------------------- /LGDragDropSwift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDropSwift/AppDelegate.swift -------------------------------------------------------------------------------- /LGDragDropSwift/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDropSwift/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LGDragDropSwift/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDropSwift/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LGDragDropSwift/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDropSwift/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LGDragDropSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDropSwift/Info.plist -------------------------------------------------------------------------------- /LGDragDropSwift/LGDragDropViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDropSwift/LGDragDropViewController.swift -------------------------------------------------------------------------------- /LGDragDropSwift/LGDragDropViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDropSwift/LGDragDropViewController.xib -------------------------------------------------------------------------------- /LGDragDropSwift/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/LGDragDropSwift/ViewController.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukagabric/LGDragDrop/HEAD/README.md --------------------------------------------------------------------------------