├── .DS_Store ├── .gitignore ├── AnimationGif.gif ├── ElasticViewAnimation.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── xp_mac.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── xp_mac.xcuserdatad │ └── xcschemes │ ├── ElasticViewAnimation.xcscheme │ └── xcschememanagement.plist ├── ElasticViewAnimation ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── MainViewController.h ├── MainViewController.m ├── UIView+DegressCenter.h ├── UIView+DegressCenter.m └── main.m ├── ElasticViewAnimationTests ├── ElasticViewAnimationTests.m └── Info.plist ├── ElasticViewAnimationUITests ├── ElasticViewAnimationUITests.m └── Info.plist └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/.gitignore -------------------------------------------------------------------------------- /AnimationGif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/AnimationGif.gif -------------------------------------------------------------------------------- /ElasticViewAnimation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/ElasticViewAnimation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ElasticViewAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/ElasticViewAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ElasticViewAnimation.xcodeproj/project.xcworkspace/xcuserdata/xp_mac.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/ElasticViewAnimation.xcodeproj/project.xcworkspace/xcuserdata/xp_mac.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ElasticViewAnimation.xcodeproj/xcuserdata/xp_mac.xcuserdatad/xcschemes/ElasticViewAnimation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/ElasticViewAnimation.xcodeproj/xcuserdata/xp_mac.xcuserdatad/xcschemes/ElasticViewAnimation.xcscheme -------------------------------------------------------------------------------- /ElasticViewAnimation.xcodeproj/xcuserdata/xp_mac.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/ElasticViewAnimation.xcodeproj/xcuserdata/xp_mac.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ElasticViewAnimation/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/ElasticViewAnimation/AppDelegate.h -------------------------------------------------------------------------------- /ElasticViewAnimation/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/ElasticViewAnimation/AppDelegate.m -------------------------------------------------------------------------------- /ElasticViewAnimation/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/ElasticViewAnimation/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ElasticViewAnimation/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/ElasticViewAnimation/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ElasticViewAnimation/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/ElasticViewAnimation/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ElasticViewAnimation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/ElasticViewAnimation/Info.plist -------------------------------------------------------------------------------- /ElasticViewAnimation/MainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/ElasticViewAnimation/MainViewController.h -------------------------------------------------------------------------------- /ElasticViewAnimation/MainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/ElasticViewAnimation/MainViewController.m -------------------------------------------------------------------------------- /ElasticViewAnimation/UIView+DegressCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/ElasticViewAnimation/UIView+DegressCenter.h -------------------------------------------------------------------------------- /ElasticViewAnimation/UIView+DegressCenter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/ElasticViewAnimation/UIView+DegressCenter.m -------------------------------------------------------------------------------- /ElasticViewAnimation/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/ElasticViewAnimation/main.m -------------------------------------------------------------------------------- /ElasticViewAnimationTests/ElasticViewAnimationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/ElasticViewAnimationTests/ElasticViewAnimationTests.m -------------------------------------------------------------------------------- /ElasticViewAnimationTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/ElasticViewAnimationTests/Info.plist -------------------------------------------------------------------------------- /ElasticViewAnimationUITests/ElasticViewAnimationUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/ElasticViewAnimationUITests/ElasticViewAnimationUITests.m -------------------------------------------------------------------------------- /ElasticViewAnimationUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/ElasticViewAnimationUITests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxp2012/ElasticViewAnimation/HEAD/README.md --------------------------------------------------------------------------------