├── ATSDragToReorderTableViewController.h ├── ATSDragToReorderTableViewController.m ├── LICENSE ├── README ├── Sample Project ├── .gitignore ├── Classes │ ├── ReorderingAppDelegate.h │ ├── ReorderingAppDelegate.m │ ├── RootViewController.h │ └── RootViewController.m ├── MainWindow.xib ├── Reordering-Info.plist ├── Reordering.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── danielshusta.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── danielshusta.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── Reordering.xcscheme │ │ └── xcschememanagement.plist ├── Reordering_Prefix.pch ├── RootViewController.xib └── main.m └── screenshot.png /ATSDragToReorderTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shusta/ReorderingTableViewController/HEAD/ATSDragToReorderTableViewController.h -------------------------------------------------------------------------------- /ATSDragToReorderTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shusta/ReorderingTableViewController/HEAD/ATSDragToReorderTableViewController.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shusta/ReorderingTableViewController/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shusta/ReorderingTableViewController/HEAD/README -------------------------------------------------------------------------------- /Sample Project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shusta/ReorderingTableViewController/HEAD/Sample Project/.gitignore -------------------------------------------------------------------------------- /Sample Project/Classes/ReorderingAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shusta/ReorderingTableViewController/HEAD/Sample Project/Classes/ReorderingAppDelegate.h -------------------------------------------------------------------------------- /Sample Project/Classes/ReorderingAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shusta/ReorderingTableViewController/HEAD/Sample Project/Classes/ReorderingAppDelegate.m -------------------------------------------------------------------------------- /Sample Project/Classes/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shusta/ReorderingTableViewController/HEAD/Sample Project/Classes/RootViewController.h -------------------------------------------------------------------------------- /Sample Project/Classes/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shusta/ReorderingTableViewController/HEAD/Sample Project/Classes/RootViewController.m -------------------------------------------------------------------------------- /Sample Project/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shusta/ReorderingTableViewController/HEAD/Sample Project/MainWindow.xib -------------------------------------------------------------------------------- /Sample Project/Reordering-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shusta/ReorderingTableViewController/HEAD/Sample Project/Reordering-Info.plist -------------------------------------------------------------------------------- /Sample Project/Reordering.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shusta/ReorderingTableViewController/HEAD/Sample Project/Reordering.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Sample Project/Reordering.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shusta/ReorderingTableViewController/HEAD/Sample Project/Reordering.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Sample Project/Reordering.xcodeproj/project.xcworkspace/xcuserdata/danielshusta.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shusta/ReorderingTableViewController/HEAD/Sample Project/Reordering.xcodeproj/project.xcworkspace/xcuserdata/danielshusta.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Sample Project/Reordering.xcodeproj/project.xcworkspace/xcuserdata/danielshusta.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shusta/ReorderingTableViewController/HEAD/Sample Project/Reordering.xcodeproj/project.xcworkspace/xcuserdata/danielshusta.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Sample Project/Reordering.xcodeproj/xcuserdata/danielshusta.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shusta/ReorderingTableViewController/HEAD/Sample Project/Reordering.xcodeproj/xcuserdata/danielshusta.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /Sample Project/Reordering.xcodeproj/xcuserdata/danielshusta.xcuserdatad/xcschemes/Reordering.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shusta/ReorderingTableViewController/HEAD/Sample Project/Reordering.xcodeproj/xcuserdata/danielshusta.xcuserdatad/xcschemes/Reordering.xcscheme -------------------------------------------------------------------------------- /Sample Project/Reordering.xcodeproj/xcuserdata/danielshusta.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shusta/ReorderingTableViewController/HEAD/Sample Project/Reordering.xcodeproj/xcuserdata/danielshusta.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Sample Project/Reordering_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shusta/ReorderingTableViewController/HEAD/Sample Project/Reordering_Prefix.pch -------------------------------------------------------------------------------- /Sample Project/RootViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shusta/ReorderingTableViewController/HEAD/Sample Project/RootViewController.xib -------------------------------------------------------------------------------- /Sample Project/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shusta/ReorderingTableViewController/HEAD/Sample Project/main.m -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shusta/ReorderingTableViewController/HEAD/screenshot.png --------------------------------------------------------------------------------