├── Interactive UIDynamics.xcodeproj └── project.pbxproj ├── Interactive UIDynamics ├── AppDelegate.h ├── AppDelegate.m ├── DraggableView.h ├── DraggableView.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── Interactive UIDynamics-Info.plist ├── Interactive UIDynamics-Prefix.pch ├── Interactive_UIDynamics.xcdatamodeld │ └── .xccurrentversion ├── MainView.h ├── MainView.m ├── PaneBehavior.h ├── PaneBehavior.m ├── ViewController.h ├── ViewController.m ├── en.lproj │ └── InfoPlist.strings └── main.m └── Interactive UIDynamicsTests ├── Interactive UIDynamicsTests-Info.plist ├── Interactive_UIDynamicsTests.m └── en.lproj └── InfoPlist.strings /Interactive UIDynamics.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-uidynamics/HEAD/Interactive UIDynamics.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Interactive UIDynamics/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-uidynamics/HEAD/Interactive UIDynamics/AppDelegate.h -------------------------------------------------------------------------------- /Interactive UIDynamics/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-uidynamics/HEAD/Interactive UIDynamics/AppDelegate.m -------------------------------------------------------------------------------- /Interactive UIDynamics/DraggableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-uidynamics/HEAD/Interactive UIDynamics/DraggableView.h -------------------------------------------------------------------------------- /Interactive UIDynamics/DraggableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-uidynamics/HEAD/Interactive UIDynamics/DraggableView.m -------------------------------------------------------------------------------- /Interactive UIDynamics/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-uidynamics/HEAD/Interactive UIDynamics/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Interactive UIDynamics/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-uidynamics/HEAD/Interactive UIDynamics/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Interactive UIDynamics/Interactive UIDynamics-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-uidynamics/HEAD/Interactive UIDynamics/Interactive UIDynamics-Info.plist -------------------------------------------------------------------------------- /Interactive UIDynamics/Interactive UIDynamics-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-uidynamics/HEAD/Interactive UIDynamics/Interactive UIDynamics-Prefix.pch -------------------------------------------------------------------------------- /Interactive UIDynamics/Interactive_UIDynamics.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-uidynamics/HEAD/Interactive UIDynamics/Interactive_UIDynamics.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /Interactive UIDynamics/MainView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-uidynamics/HEAD/Interactive UIDynamics/MainView.h -------------------------------------------------------------------------------- /Interactive UIDynamics/MainView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-uidynamics/HEAD/Interactive UIDynamics/MainView.m -------------------------------------------------------------------------------- /Interactive UIDynamics/PaneBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-uidynamics/HEAD/Interactive UIDynamics/PaneBehavior.h -------------------------------------------------------------------------------- /Interactive UIDynamics/PaneBehavior.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-uidynamics/HEAD/Interactive UIDynamics/PaneBehavior.m -------------------------------------------------------------------------------- /Interactive UIDynamics/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-uidynamics/HEAD/Interactive UIDynamics/ViewController.h -------------------------------------------------------------------------------- /Interactive UIDynamics/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-uidynamics/HEAD/Interactive UIDynamics/ViewController.m -------------------------------------------------------------------------------- /Interactive UIDynamics/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | -------------------------------------------------------------------------------- /Interactive UIDynamics/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-uidynamics/HEAD/Interactive UIDynamics/main.m -------------------------------------------------------------------------------- /Interactive UIDynamicsTests/Interactive UIDynamicsTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-uidynamics/HEAD/Interactive UIDynamicsTests/Interactive UIDynamicsTests-Info.plist -------------------------------------------------------------------------------- /Interactive UIDynamicsTests/Interactive_UIDynamicsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-uidynamics/HEAD/Interactive UIDynamicsTests/Interactive_UIDynamicsTests.m -------------------------------------------------------------------------------- /Interactive UIDynamicsTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | --------------------------------------------------------------------------------