├── InteractiveAnimations.xcodeproj └── project.pbxproj ├── InteractiveAnimations.xcworkspace └── contents.xcworkspacedata ├── InteractiveAnimations ├── DraggableView.h ├── DraggableView.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── InteractiveAnimations-Info.plist ├── InteractiveAnimations-Prefix.pch ├── UINTAppDelegate.h ├── UINTAppDelegate.m ├── UINTViewController.h ├── UINTViewController.m ├── en.lproj │ └── InfoPlist.strings └── main.m ├── InteractiveAnimationsTests ├── InteractiveAnimationsTests-Info.plist ├── InteractiveAnimationsTests.m └── en.lproj │ └── InfoPlist.strings └── Podfile /InteractiveAnimations.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-pop/HEAD/InteractiveAnimations.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /InteractiveAnimations.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-pop/HEAD/InteractiveAnimations.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /InteractiveAnimations/DraggableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-pop/HEAD/InteractiveAnimations/DraggableView.h -------------------------------------------------------------------------------- /InteractiveAnimations/DraggableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-pop/HEAD/InteractiveAnimations/DraggableView.m -------------------------------------------------------------------------------- /InteractiveAnimations/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-pop/HEAD/InteractiveAnimations/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /InteractiveAnimations/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-pop/HEAD/InteractiveAnimations/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /InteractiveAnimations/InteractiveAnimations-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-pop/HEAD/InteractiveAnimations/InteractiveAnimations-Info.plist -------------------------------------------------------------------------------- /InteractiveAnimations/InteractiveAnimations-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-pop/HEAD/InteractiveAnimations/InteractiveAnimations-Prefix.pch -------------------------------------------------------------------------------- /InteractiveAnimations/UINTAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-pop/HEAD/InteractiveAnimations/UINTAppDelegate.h -------------------------------------------------------------------------------- /InteractiveAnimations/UINTAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-pop/HEAD/InteractiveAnimations/UINTAppDelegate.m -------------------------------------------------------------------------------- /InteractiveAnimations/UINTViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-pop/HEAD/InteractiveAnimations/UINTViewController.h -------------------------------------------------------------------------------- /InteractiveAnimations/UINTViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-pop/HEAD/InteractiveAnimations/UINTViewController.m -------------------------------------------------------------------------------- /InteractiveAnimations/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /InteractiveAnimations/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-pop/HEAD/InteractiveAnimations/main.m -------------------------------------------------------------------------------- /InteractiveAnimationsTests/InteractiveAnimationsTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-pop/HEAD/InteractiveAnimationsTests/InteractiveAnimationsTests-Info.plist -------------------------------------------------------------------------------- /InteractiveAnimationsTests/InteractiveAnimationsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/objcio/issue-12-interactive-animations-pop/HEAD/InteractiveAnimationsTests/InteractiveAnimationsTests.m -------------------------------------------------------------------------------- /InteractiveAnimationsTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | pod 'pop', '~> 1.0' 2 | --------------------------------------------------------------------------------