├── IFDragDropActionView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IFDragDropActionView.xccheckout │ └── xcuserdata │ │ ├── FOLY.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ ├── cong.nt.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── congnc-macpro.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── FOLY.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── IFDragDropActionView.xcscheme │ │ └── xcschememanagement.plist │ ├── cong.nt.xcuserdatad │ └── xcschemes │ │ ├── IFDragDropActionView.xcscheme │ │ └── xcschememanagement.plist │ └── congnc-macpro.xcuserdatad │ └── xcschemes │ ├── IFDragDropActionView.xcscheme │ └── xcschememanagement.plist ├── IFDragDropActionView ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Categories │ ├── UIImage+ImageEffects.h │ └── UIImage+ImageEffects.m ├── DragDrop │ ├── DragDropBackground.h │ ├── DragDropBackground.m │ ├── DragItemView.h │ ├── DragItemView.m │ ├── DragItemView.xib │ ├── DropZoneView.h │ ├── DropZoneView.m │ └── DropZoneView.xib ├── DragDropProtocol.h ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── avatar2.imageset │ │ ├── Contents.json │ │ └── avatar2.jpg ├── Info.plist ├── MMMacro.h ├── MoreViewController.h ├── MoreViewController.m ├── RFScreenshot │ ├── RFScreenshot.h │ └── RFScreenshot.m ├── SourceDragItemView.h ├── SourceDragItemView.m ├── ViewController.h ├── ViewController.m └── main.m ├── IFDragDropActionViewTests ├── IFDragDropActionViewTests.m └── Info.plist └── README.md /IFDragDropActionView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /IFDragDropActionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /IFDragDropActionView.xcodeproj/project.xcworkspace/xcshareddata/IFDragDropActionView.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView.xcodeproj/project.xcworkspace/xcshareddata/IFDragDropActionView.xccheckout -------------------------------------------------------------------------------- /IFDragDropActionView.xcodeproj/project.xcworkspace/xcuserdata/FOLY.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView.xcodeproj/project.xcworkspace/xcuserdata/FOLY.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /IFDragDropActionView.xcodeproj/project.xcworkspace/xcuserdata/cong.nt.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView.xcodeproj/project.xcworkspace/xcuserdata/cong.nt.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /IFDragDropActionView.xcodeproj/project.xcworkspace/xcuserdata/congnc-macpro.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView.xcodeproj/project.xcworkspace/xcuserdata/congnc-macpro.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /IFDragDropActionView.xcodeproj/xcuserdata/FOLY.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView.xcodeproj/xcuserdata/FOLY.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /IFDragDropActionView.xcodeproj/xcuserdata/FOLY.xcuserdatad/xcschemes/IFDragDropActionView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView.xcodeproj/xcuserdata/FOLY.xcuserdatad/xcschemes/IFDragDropActionView.xcscheme -------------------------------------------------------------------------------- /IFDragDropActionView.xcodeproj/xcuserdata/FOLY.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView.xcodeproj/xcuserdata/FOLY.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /IFDragDropActionView.xcodeproj/xcuserdata/cong.nt.xcuserdatad/xcschemes/IFDragDropActionView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView.xcodeproj/xcuserdata/cong.nt.xcuserdatad/xcschemes/IFDragDropActionView.xcscheme -------------------------------------------------------------------------------- /IFDragDropActionView.xcodeproj/xcuserdata/cong.nt.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView.xcodeproj/xcuserdata/cong.nt.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /IFDragDropActionView.xcodeproj/xcuserdata/congnc-macpro.xcuserdatad/xcschemes/IFDragDropActionView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView.xcodeproj/xcuserdata/congnc-macpro.xcuserdatad/xcschemes/IFDragDropActionView.xcscheme -------------------------------------------------------------------------------- /IFDragDropActionView.xcodeproj/xcuserdata/congnc-macpro.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView.xcodeproj/xcuserdata/congnc-macpro.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /IFDragDropActionView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/AppDelegate.h -------------------------------------------------------------------------------- /IFDragDropActionView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/AppDelegate.m -------------------------------------------------------------------------------- /IFDragDropActionView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /IFDragDropActionView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /IFDragDropActionView/Categories/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/Categories/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /IFDragDropActionView/Categories/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/Categories/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /IFDragDropActionView/DragDrop/DragDropBackground.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/DragDrop/DragDropBackground.h -------------------------------------------------------------------------------- /IFDragDropActionView/DragDrop/DragDropBackground.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/DragDrop/DragDropBackground.m -------------------------------------------------------------------------------- /IFDragDropActionView/DragDrop/DragItemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/DragDrop/DragItemView.h -------------------------------------------------------------------------------- /IFDragDropActionView/DragDrop/DragItemView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/DragDrop/DragItemView.m -------------------------------------------------------------------------------- /IFDragDropActionView/DragDrop/DragItemView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/DragDrop/DragItemView.xib -------------------------------------------------------------------------------- /IFDragDropActionView/DragDrop/DropZoneView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/DragDrop/DropZoneView.h -------------------------------------------------------------------------------- /IFDragDropActionView/DragDrop/DropZoneView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/DragDrop/DropZoneView.m -------------------------------------------------------------------------------- /IFDragDropActionView/DragDrop/DropZoneView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/DragDrop/DropZoneView.xib -------------------------------------------------------------------------------- /IFDragDropActionView/DragDropProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/DragDropProtocol.h -------------------------------------------------------------------------------- /IFDragDropActionView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /IFDragDropActionView/Images.xcassets/avatar2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/Images.xcassets/avatar2.imageset/Contents.json -------------------------------------------------------------------------------- /IFDragDropActionView/Images.xcassets/avatar2.imageset/avatar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/Images.xcassets/avatar2.imageset/avatar2.jpg -------------------------------------------------------------------------------- /IFDragDropActionView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/Info.plist -------------------------------------------------------------------------------- /IFDragDropActionView/MMMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/MMMacro.h -------------------------------------------------------------------------------- /IFDragDropActionView/MoreViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/MoreViewController.h -------------------------------------------------------------------------------- /IFDragDropActionView/MoreViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/MoreViewController.m -------------------------------------------------------------------------------- /IFDragDropActionView/RFScreenshot/RFScreenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/RFScreenshot/RFScreenshot.h -------------------------------------------------------------------------------- /IFDragDropActionView/RFScreenshot/RFScreenshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/RFScreenshot/RFScreenshot.m -------------------------------------------------------------------------------- /IFDragDropActionView/SourceDragItemView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/SourceDragItemView.h -------------------------------------------------------------------------------- /IFDragDropActionView/SourceDragItemView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/SourceDragItemView.m -------------------------------------------------------------------------------- /IFDragDropActionView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/ViewController.h -------------------------------------------------------------------------------- /IFDragDropActionView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/ViewController.m -------------------------------------------------------------------------------- /IFDragDropActionView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionView/main.m -------------------------------------------------------------------------------- /IFDragDropActionViewTests/IFDragDropActionViewTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionViewTests/IFDragDropActionViewTests.m -------------------------------------------------------------------------------- /IFDragDropActionViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/congncif/DragDropActionView/HEAD/IFDragDropActionViewTests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DragDropActionView 2 | 3 | ![Alt text](http://i.imgur.com/Fs0DHbVl.png "JSON Model") 4 | --------------------------------------------------------------------------------