├── .DS_Store ├── .gitignore ├── README.md ├── ShareOfCoreAnimation.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── ShareOfCoreAnimation.xccheckout │ └── xcuserdata │ │ ├── Ryan.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── jinxiaojun.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── Ryan.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ └── jinxiaojun.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── ShareOfCoreAnimation.xcscheme │ ├── ShareOfCoreAnimationTests.xcscheme │ └── xcschememanagement.plist ├── ShareOfCoreAnimation ├── .DS_Store ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ └── Main.storyboard ├── CA-Part-A │ ├── CAPartAViewController.h │ ├── CAPartAViewController.m │ └── CAPartAViewController.xib ├── CA-Part-B │ ├── CAPartBViewController.h │ ├── CAPartBViewController.m │ └── CAPartBViewController.xib ├── CA-Part-C │ ├── CAPartCViewController.h │ ├── CAPartCViewController.m │ ├── CAPartCViewController.xib │ ├── ShapeAniLayer.h │ ├── ShapeAniLayer.m │ ├── ShapeLayerController.h │ └── ShapeLayerController.m ├── CA-Part-D │ ├── CAPartDViewController.h │ ├── CAPartDViewController.m │ └── CAPartDViewController.xib ├── CA-Supplement │ ├── CASupplementViewController.h │ ├── CASupplementViewController.m │ └── CASupplementViewController.xib ├── CAIntroduction │ ├── CAIntroViewController.h │ ├── CAIntroViewController.m │ ├── CAIntroViewController.xib │ └── CoreAnimationIntro.h ├── Images.xcassets │ ├── .DS_Store │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── Default-568h@2x.png │ │ ├── Default-667h@2x-1.png │ │ ├── Default-736h@3x.png │ │ ├── Default-812h@3x.png │ │ └── Default@2x.png ├── LayerProperty │ ├── DemoLayer.h │ ├── DemoLayer.m │ ├── LayerPropertyViewController.h │ ├── LayerPropertyViewController.m │ └── LayerPropertyViewController.xib ├── Resource │ ├── .DS_Store │ ├── Core Animation.png │ ├── Snowman.png │ ├── Snowman@2x.png │ ├── circle.png │ ├── demo.gif │ ├── demo_pic1.png │ ├── demo_pic2.png │ ├── head_icon.png │ ├── test.jpg │ └── tracker.png ├── ShareOfCoreAnimation-Info.plist ├── ShareOfCoreAnimation-Prefix.pch ├── ViewController.h ├── ViewController.m ├── en.lproj │ └── InfoPlist.strings └── main.m └── ShareOfCoreAnimationTests ├── ShareOfCoreAnimationTests-Info.plist ├── ShareOfCoreAnimationTests.m └── en.lproj └── InfoPlist.strings /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/README.md -------------------------------------------------------------------------------- /ShareOfCoreAnimation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ShareOfCoreAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ShareOfCoreAnimation.xcodeproj/project.xcworkspace/xcshareddata/ShareOfCoreAnimation.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation.xcodeproj/project.xcworkspace/xcshareddata/ShareOfCoreAnimation.xccheckout -------------------------------------------------------------------------------- /ShareOfCoreAnimation.xcodeproj/project.xcworkspace/xcuserdata/Ryan.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation.xcodeproj/project.xcworkspace/xcuserdata/Ryan.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ShareOfCoreAnimation.xcodeproj/project.xcworkspace/xcuserdata/jinxiaojun.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation.xcodeproj/project.xcworkspace/xcuserdata/jinxiaojun.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ShareOfCoreAnimation.xcodeproj/xcuserdata/Ryan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation.xcodeproj/xcuserdata/Ryan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ShareOfCoreAnimation.xcodeproj/xcuserdata/jinxiaojun.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation.xcodeproj/xcuserdata/jinxiaojun.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ShareOfCoreAnimation.xcodeproj/xcuserdata/jinxiaojun.xcuserdatad/xcschemes/ShareOfCoreAnimation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation.xcodeproj/xcuserdata/jinxiaojun.xcuserdatad/xcschemes/ShareOfCoreAnimation.xcscheme -------------------------------------------------------------------------------- /ShareOfCoreAnimation.xcodeproj/xcuserdata/jinxiaojun.xcuserdatad/xcschemes/ShareOfCoreAnimationTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation.xcodeproj/xcuserdata/jinxiaojun.xcuserdatad/xcschemes/ShareOfCoreAnimationTests.xcscheme -------------------------------------------------------------------------------- /ShareOfCoreAnimation.xcodeproj/xcuserdata/jinxiaojun.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation.xcodeproj/xcuserdata/jinxiaojun.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ShareOfCoreAnimation/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/.DS_Store -------------------------------------------------------------------------------- /ShareOfCoreAnimation/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/AppDelegate.h -------------------------------------------------------------------------------- /ShareOfCoreAnimation/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/AppDelegate.m -------------------------------------------------------------------------------- /ShareOfCoreAnimation/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ShareOfCoreAnimation/CA-Part-A/CAPartAViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/CA-Part-A/CAPartAViewController.h -------------------------------------------------------------------------------- /ShareOfCoreAnimation/CA-Part-A/CAPartAViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/CA-Part-A/CAPartAViewController.m -------------------------------------------------------------------------------- /ShareOfCoreAnimation/CA-Part-A/CAPartAViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/CA-Part-A/CAPartAViewController.xib -------------------------------------------------------------------------------- /ShareOfCoreAnimation/CA-Part-B/CAPartBViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/CA-Part-B/CAPartBViewController.h -------------------------------------------------------------------------------- /ShareOfCoreAnimation/CA-Part-B/CAPartBViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/CA-Part-B/CAPartBViewController.m -------------------------------------------------------------------------------- /ShareOfCoreAnimation/CA-Part-B/CAPartBViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/CA-Part-B/CAPartBViewController.xib -------------------------------------------------------------------------------- /ShareOfCoreAnimation/CA-Part-C/CAPartCViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/CA-Part-C/CAPartCViewController.h -------------------------------------------------------------------------------- /ShareOfCoreAnimation/CA-Part-C/CAPartCViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/CA-Part-C/CAPartCViewController.m -------------------------------------------------------------------------------- /ShareOfCoreAnimation/CA-Part-C/CAPartCViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/CA-Part-C/CAPartCViewController.xib -------------------------------------------------------------------------------- /ShareOfCoreAnimation/CA-Part-C/ShapeAniLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/CA-Part-C/ShapeAniLayer.h -------------------------------------------------------------------------------- /ShareOfCoreAnimation/CA-Part-C/ShapeAniLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/CA-Part-C/ShapeAniLayer.m -------------------------------------------------------------------------------- /ShareOfCoreAnimation/CA-Part-C/ShapeLayerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/CA-Part-C/ShapeLayerController.h -------------------------------------------------------------------------------- /ShareOfCoreAnimation/CA-Part-C/ShapeLayerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/CA-Part-C/ShapeLayerController.m -------------------------------------------------------------------------------- /ShareOfCoreAnimation/CA-Part-D/CAPartDViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/CA-Part-D/CAPartDViewController.h -------------------------------------------------------------------------------- /ShareOfCoreAnimation/CA-Part-D/CAPartDViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/CA-Part-D/CAPartDViewController.m -------------------------------------------------------------------------------- /ShareOfCoreAnimation/CA-Part-D/CAPartDViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/CA-Part-D/CAPartDViewController.xib -------------------------------------------------------------------------------- /ShareOfCoreAnimation/CA-Supplement/CASupplementViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/CA-Supplement/CASupplementViewController.h -------------------------------------------------------------------------------- /ShareOfCoreAnimation/CA-Supplement/CASupplementViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/CA-Supplement/CASupplementViewController.m -------------------------------------------------------------------------------- /ShareOfCoreAnimation/CA-Supplement/CASupplementViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/CA-Supplement/CASupplementViewController.xib -------------------------------------------------------------------------------- /ShareOfCoreAnimation/CAIntroduction/CAIntroViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/CAIntroduction/CAIntroViewController.h -------------------------------------------------------------------------------- /ShareOfCoreAnimation/CAIntroduction/CAIntroViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/CAIntroduction/CAIntroViewController.m -------------------------------------------------------------------------------- /ShareOfCoreAnimation/CAIntroduction/CAIntroViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/CAIntroduction/CAIntroViewController.xib -------------------------------------------------------------------------------- /ShareOfCoreAnimation/CAIntroduction/CoreAnimationIntro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/CAIntroduction/CoreAnimationIntro.h -------------------------------------------------------------------------------- /ShareOfCoreAnimation/Images.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/Images.xcassets/.DS_Store -------------------------------------------------------------------------------- /ShareOfCoreAnimation/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ShareOfCoreAnimation/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /ShareOfCoreAnimation/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /ShareOfCoreAnimation/Images.xcassets/LaunchImage.launchimage/Default-667h@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/Images.xcassets/LaunchImage.launchimage/Default-667h@2x-1.png -------------------------------------------------------------------------------- /ShareOfCoreAnimation/Images.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/Images.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /ShareOfCoreAnimation/Images.xcassets/LaunchImage.launchimage/Default-812h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/Images.xcassets/LaunchImage.launchimage/Default-812h@3x.png -------------------------------------------------------------------------------- /ShareOfCoreAnimation/Images.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/Images.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /ShareOfCoreAnimation/LayerProperty/DemoLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/LayerProperty/DemoLayer.h -------------------------------------------------------------------------------- /ShareOfCoreAnimation/LayerProperty/DemoLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/LayerProperty/DemoLayer.m -------------------------------------------------------------------------------- /ShareOfCoreAnimation/LayerProperty/LayerPropertyViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/LayerProperty/LayerPropertyViewController.h -------------------------------------------------------------------------------- /ShareOfCoreAnimation/LayerProperty/LayerPropertyViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/LayerProperty/LayerPropertyViewController.m -------------------------------------------------------------------------------- /ShareOfCoreAnimation/LayerProperty/LayerPropertyViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/LayerProperty/LayerPropertyViewController.xib -------------------------------------------------------------------------------- /ShareOfCoreAnimation/Resource/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/Resource/.DS_Store -------------------------------------------------------------------------------- /ShareOfCoreAnimation/Resource/Core Animation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/Resource/Core Animation.png -------------------------------------------------------------------------------- /ShareOfCoreAnimation/Resource/Snowman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/Resource/Snowman.png -------------------------------------------------------------------------------- /ShareOfCoreAnimation/Resource/Snowman@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/Resource/Snowman@2x.png -------------------------------------------------------------------------------- /ShareOfCoreAnimation/Resource/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/Resource/circle.png -------------------------------------------------------------------------------- /ShareOfCoreAnimation/Resource/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/Resource/demo.gif -------------------------------------------------------------------------------- /ShareOfCoreAnimation/Resource/demo_pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/Resource/demo_pic1.png -------------------------------------------------------------------------------- /ShareOfCoreAnimation/Resource/demo_pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/Resource/demo_pic2.png -------------------------------------------------------------------------------- /ShareOfCoreAnimation/Resource/head_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/Resource/head_icon.png -------------------------------------------------------------------------------- /ShareOfCoreAnimation/Resource/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/Resource/test.jpg -------------------------------------------------------------------------------- /ShareOfCoreAnimation/Resource/tracker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/Resource/tracker.png -------------------------------------------------------------------------------- /ShareOfCoreAnimation/ShareOfCoreAnimation-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/ShareOfCoreAnimation-Info.plist -------------------------------------------------------------------------------- /ShareOfCoreAnimation/ShareOfCoreAnimation-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/ShareOfCoreAnimation-Prefix.pch -------------------------------------------------------------------------------- /ShareOfCoreAnimation/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/ViewController.h -------------------------------------------------------------------------------- /ShareOfCoreAnimation/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/ViewController.m -------------------------------------------------------------------------------- /ShareOfCoreAnimation/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ShareOfCoreAnimation/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimation/main.m -------------------------------------------------------------------------------- /ShareOfCoreAnimationTests/ShareOfCoreAnimationTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimationTests/ShareOfCoreAnimationTests-Info.plist -------------------------------------------------------------------------------- /ShareOfCoreAnimationTests/ShareOfCoreAnimationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjinxx/ShareOfCoreAnimation/HEAD/ShareOfCoreAnimationTests/ShareOfCoreAnimationTests.m -------------------------------------------------------------------------------- /ShareOfCoreAnimationTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | --------------------------------------------------------------------------------