├── CATiledLayer.png ├── Chapter 01 └── 1.1 │ ├── Classes │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── LayerTest-Info.plist │ ├── LayerTest-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── ViewController.xib │ └── main.m │ ├── Images │ ├── Default-568h@2x.png │ ├── Default.png │ └── Default@2x.png │ └── LayerTest.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ └── xcschemes │ │ └── LayerTest.xcscheme │ └── xcuserdata │ └── nick.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Chapter 02 ├── 2.1 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ContentsTest-Info.plist │ │ ├── ContentsTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── ContentsTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── ContentsTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Snowman.png │ │ └── Snowman@2x.png ├── 2.2 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ContentsGravity-Info.plist │ │ ├── ContentsGravity-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── ContentsGravity.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── ContentsGravity.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Snowman.png │ │ └── Snowman@2x.png ├── 2.3 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── LayerSprites-Info.plist │ │ ├── LayerSprites-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Sprites.png │ │ └── Sprites@2x.png │ └── LayerSprites.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── LayerSprites.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 2.4 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── StretchableButtons-Info.plist │ │ ├── StretchableButtons-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Button.png │ │ ├── Button@2x.png │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ └── StretchableButtons.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── StretchableButtons.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── 2.5 │ ├── Classes │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── DrawingTest-Info.plist │ ├── DrawingTest-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── ViewController.xib │ └── main.m │ ├── DrawingTest.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── DrawingTest.xcscheme │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist │ └── Images │ ├── Default-568h@2x.png │ ├── Default.png │ └── Default@2x.png ├── Chapter 03 ├── 3.1 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ClockFace-Info.plist │ │ ├── ClockFace-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── ClockFace.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── ClockFace.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── ClockFace.png │ │ ├── ClockFace@2x.png │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── HourHand.png │ │ ├── HourHand@2x.png │ │ ├── MinuteHand.png │ │ ├── MinuteHand@2x.png │ │ ├── SecondHand.png │ │ └── SecondHand@2x.png ├── 3.2 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ClockFace-Info.plist │ │ ├── ClockFace-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── ClockFace.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── ClockFace.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── ClockFace.png │ │ ├── ClockFace@2x.png │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── HourHand.png │ │ ├── HourHand@2x.png │ │ ├── MinuteHand.png │ │ ├── MinuteHand@2x.png │ │ ├── SecondHand.png │ │ └── SecondHand@2x.png ├── 3.3 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── OverlapTest-Info.plist │ │ ├── OverlapTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ └── OverlapTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── LayerTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 3.4 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── LayerTouchTest-Info.plist │ │ ├── LayerTouchTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ └── LayerTouchTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── LayerTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── 3.5 │ ├── Classes │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── LayerTouchTest-Info.plist │ ├── LayerTouchTest-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── ViewController.xib │ └── main.m │ ├── Images │ ├── Default-568h@2x.png │ ├── Default.png │ └── Default@2x.png │ └── LayerTouchTest.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ └── xcschemes │ │ └── LayerTest.xcscheme │ └── xcuserdata │ └── nick.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── Chapter 04 ├── 4.1 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ClipTest-Info.plist │ │ ├── ClipTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── ClipTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── ClipTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 4.2 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ClipTest-Info.plist │ │ ├── ClipTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── ClipTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── ClipTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 4.3 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ClipTest-Info.plist │ │ ├── ClipTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── ClipTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── ClipTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 4.4 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ShadowTest-Info.plist │ │ ├── ShadowTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Cone.png │ │ ├── Cone@2x.png │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ └── ShadowTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── ShadowTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 4.5 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── MaskTest-Info.plist │ │ ├── MaskTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Cone.png │ │ ├── Cone@2x.png │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Igloo.png │ │ └── Igloo@2x.png │ └── MaskTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── MaskTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 4.6 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── LCDClock-Info.plist │ │ ├── LCDClock-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── Digits.png │ └── LCDClock.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── LCDClock.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── 4.7 │ ├── Classes │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── GroupedAlpha-Info.plist │ ├── GroupedAlpha-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── ViewController.xib │ └── main.m │ ├── GroupedAlpha.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── LayerTest.xcscheme │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist │ └── Images │ ├── Default-568h@2x.png │ ├── Default.png │ └── Default@2x.png ├── Chapter 05 ├── 5.1 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── LayerTest-Info.plist │ │ ├── LayerTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Snowman.png │ │ └── Snowman@2x.png │ └── LayerTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── LayerTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 5.10 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── LightingTest-Info.plist │ │ ├── LightingTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ └── LightingTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── LightingTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 5.2 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── LayerTest-Info.plist │ │ ├── LayerTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Snowman.png │ │ └── Snowman@2x.png │ └── LayerTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── LayerTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 5.3 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── LayerTest-Info.plist │ │ ├── LayerTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Snowman.png │ │ └── Snowman@2x.png │ └── LayerTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── LayerTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 5.4 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── LayerTest-Info.plist │ │ ├── LayerTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Snowman.png │ │ └── Snowman@2x.png │ └── LayerTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── LayerTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 5.5 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── LayerTest-Info.plist │ │ ├── LayerTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Snowman.png │ │ └── Snowman@2x.png │ └── LayerTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── LayerTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 5.6 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── LayerTest-Info.plist │ │ ├── LayerTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Snowman.png │ │ └── Snowman@2x.png │ └── LayerTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── LayerTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 5.7 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── LayerTest-Info.plist │ │ ├── LayerTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ └── LayerTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── LayerTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 5.8 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── LayerTest-Info.plist │ │ ├── LayerTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ └── LayerTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── LayerTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── 5.9 │ ├── Classes │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── CubeTest-Info.plist │ ├── CubeTest-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── ViewController.xib │ └── main.m │ ├── CubeTest.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── CubeTest.xcscheme │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist │ └── Images │ ├── Default-568h@2x.png │ ├── Default.png │ └── Default@2x.png ├── Chapter 06 ├── 6.1 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ShapeLayerTest-Info.plist │ │ ├── ShapeLayerTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ └── ShapeLayerTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── ShapeLayerTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 6.10 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ScrollTest-Info.plist │ │ ├── ScrollTest-Prefix.pch │ │ ├── ScrollView.h │ │ ├── ScrollView.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Snowman.png │ │ └── Snowman@2x.png │ └── ScrollTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── ScrollTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 6.11 │ ├── TileCutter.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ ├── TileCutter.xcscheme │ │ │ └── xcschememanagement.plist │ └── TileCutter │ │ ├── TileCutter-Prefix.pch │ │ ├── TileCutter.1 │ │ └── main.m ├── 6.12 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── TileTest-Info.plist │ │ ├── TileTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Snowman_00_00.jpg │ │ ├── Snowman_00_01.jpg │ │ ├── Snowman_00_02.jpg │ │ ├── Snowman_00_03.jpg │ │ ├── Snowman_00_04.jpg │ │ ├── Snowman_00_05.jpg │ │ ├── Snowman_00_06.jpg │ │ ├── Snowman_00_07.jpg │ │ ├── Snowman_01_00.jpg │ │ ├── Snowman_01_01.jpg │ │ ├── Snowman_01_02.jpg │ │ ├── Snowman_01_03.jpg │ │ ├── Snowman_01_04.jpg │ │ ├── Snowman_01_05.jpg │ │ ├── Snowman_01_06.jpg │ │ ├── Snowman_01_07.jpg │ │ ├── Snowman_02_00.jpg │ │ ├── Snowman_02_01.jpg │ │ ├── Snowman_02_02.jpg │ │ ├── Snowman_02_03.jpg │ │ ├── Snowman_02_04.jpg │ │ ├── Snowman_02_05.jpg │ │ ├── Snowman_02_06.jpg │ │ ├── Snowman_02_07.jpg │ │ ├── Snowman_03_00.jpg │ │ ├── Snowman_03_01.jpg │ │ ├── Snowman_03_02.jpg │ │ ├── Snowman_03_03.jpg │ │ ├── Snowman_03_04.jpg │ │ ├── Snowman_03_05.jpg │ │ ├── Snowman_03_06.jpg │ │ ├── Snowman_03_07.jpg │ │ ├── Snowman_04_00.jpg │ │ ├── Snowman_04_01.jpg │ │ ├── Snowman_04_02.jpg │ │ ├── Snowman_04_03.jpg │ │ ├── Snowman_04_04.jpg │ │ ├── Snowman_04_05.jpg │ │ ├── Snowman_04_06.jpg │ │ ├── Snowman_04_07.jpg │ │ ├── Snowman_05_00.jpg │ │ ├── Snowman_05_01.jpg │ │ ├── Snowman_05_02.jpg │ │ ├── Snowman_05_03.jpg │ │ ├── Snowman_05_04.jpg │ │ ├── Snowman_05_05.jpg │ │ ├── Snowman_05_06.jpg │ │ ├── Snowman_05_07.jpg │ │ ├── Snowman_06_00.jpg │ │ ├── Snowman_06_01.jpg │ │ ├── Snowman_06_02.jpg │ │ ├── Snowman_06_03.jpg │ │ ├── Snowman_06_04.jpg │ │ ├── Snowman_06_05.jpg │ │ ├── Snowman_06_06.jpg │ │ ├── Snowman_06_07.jpg │ │ ├── Snowman_07_00.jpg │ │ ├── Snowman_07_01.jpg │ │ ├── Snowman_07_02.jpg │ │ ├── Snowman_07_03.jpg │ │ ├── Snowman_07_04.jpg │ │ ├── Snowman_07_05.jpg │ │ ├── Snowman_07_06.jpg │ │ └── Snowman_07_07.jpg │ └── TileTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── TileTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 6.13 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ParticleTest-Info.plist │ │ ├── ParticleTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── Spark.png │ └── ParticleTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── ParticleTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 6.14 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── GLTest-Info.plist │ │ ├── GLTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── GLTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── GLTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 6.15 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── VideoTest-Info.plist │ │ ├── VideoTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ ├── Video │ │ └── Ship.mp4 │ └── VideoTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── VideoTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 6.16 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── VideoTest-Info.plist │ │ ├── VideoTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ ├── Video │ │ └── Ship.mp4 │ └── VideoTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── LayerTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 6.2 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── TextLayerTest-Info.plist │ │ ├── TextLayerTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ └── TextLayerTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── TextLayerTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 6.3 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── TextLayerTest-Info.plist │ │ ├── TextLayerTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ └── TextLayerTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── TextLayerTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 6.4 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── LayerLabel-Info.plist │ │ ├── LayerLabel-Prefix.pch │ │ ├── LayerLabel.h │ │ ├── LayerLabel.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ └── LayerLabel.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── LayerLabel.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 6.5 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── CubeTest-Info.plist │ │ ├── CubeTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── CubeTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── CubeTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 6.6 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── GradientTest-Info.plist │ │ ├── GradientTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── GradientTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── GradientTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 6.7 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── GradientTest-Info.plist │ │ ├── GradientTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── GradientTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── GradientTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 6.8 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ReplicatorTest-Info.plist │ │ ├── ReplicatorTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ └── ReplicatorTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── ReplicatorTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── 6.9 │ ├── Classes │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── ReflectionTest-Info.plist │ ├── ReflectionTest-Prefix.pch │ ├── ReflectionView.h │ ├── ReflectionView.m │ ├── ViewController.h │ ├── ViewController.m │ ├── ViewController.xib │ └── main.m │ ├── Images │ ├── Anchor.png │ ├── Anchor@2x.png │ ├── Default-568h@2x.png │ ├── Default.png │ └── Default@2x.png │ └── ReflectionTest.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ └── xcschemes │ │ └── ReflectionTest.xcscheme │ └── xcuserdata │ └── nick.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── Chapter 07 ├── 7.1 │ ├── AnimationTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── AnimationTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── Classes │ │ ├── AnimationTest-Info.plist │ │ ├── AnimationTest-Prefix.pch │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 7.2 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── TransactionTest-Info.plist │ │ ├── TransactionTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ └── TransactionTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── TransactionTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 7.3 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── CompletionTest-Info.plist │ │ ├── CompletionTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── CompletionTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── CompletionTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 7.4 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── DurationTest-Info.plist │ │ ├── DurationTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── DurationTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── DurationTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 7.5 │ ├── ActionTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── ActionTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── Classes │ │ ├── ActionTest-Info.plist │ │ ├── ActionTest-Prefix.pch │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 7.6 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── CustomActionTest-Info.plist │ │ ├── CustomActionTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── CustomActionTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── CustomActionTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png └── 7.7 │ ├── Classes │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── PresentationLayerTest-Info.plist │ ├── PresentationLayerTest-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── ViewController.xib │ └── main.m │ ├── Images │ ├── Default-568h@2x.png │ ├── Default.png │ └── Default@2x.png │ └── PresentationLayerTest.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ └── xcschemes │ │ └── PresentationLayerTest.xcscheme │ └── xcuserdata │ └── nick.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── Chapter 08 ├── 8.1 │ ├── AnimationTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── AnimationTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── Classes │ │ ├── AnimationTest-Info.plist │ │ ├── AnimationTest-Prefix.pch │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 8.10 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── GroupTest-Info.plist │ │ ├── GroupTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── GroupTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── GroupTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 8.11 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── TransitionTest-Info.plist │ │ ├── TransitionTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Anchor.png │ │ ├── Anchor@2x.png │ │ ├── Cone.png │ │ ├── Cone@2x.png │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Igloo.png │ │ ├── Igloo@2x.png │ │ ├── Spaceship.png │ │ └── Spaceship@2x.png │ └── TransitionTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── TransitionTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 8.12 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── FirstViewController.h │ │ ├── FirstViewController.m │ │ ├── FirstViewController.xib │ │ ├── SecondViewController.h │ │ ├── SecondViewController.m │ │ ├── SecondViewController.xib │ │ ├── TabBarTransition-Info.plist │ │ ├── TabBarTransition-Prefix.pch │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── first.png │ │ ├── first@2x.png │ │ ├── second.png │ │ └── second@2x.png │ └── TabBarTransition.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ ├── TabBarTransition.xcscheme │ │ └── xcschememanagement.plist ├── 8.13 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── UIKitTransitionTest-Info.plist │ │ ├── UIKitTransitionTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Anchor.png │ │ ├── Anchor@2x.png │ │ ├── Cone.png │ │ ├── Cone@2x.png │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Igloo.png │ │ ├── Igloo@2x.png │ │ ├── Spaceship.png │ │ └── Spaceship@2x.png │ └── UIKitTransitionTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── UIKitTransitionTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 8.14 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── CustomTransition-Info.plist │ │ ├── CustomTransition-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── CustomTransition.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── CustomTransition.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Ship.png │ │ └── Ship@2x.png ├── 8.15 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── StartStopTest-Info.plist │ │ ├── StartStopTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Ship.png │ │ └── Ship@2x.png │ └── StartStopTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── StartStopTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 8.2 │ ├── AnimationTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── AnimationTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── Classes │ │ ├── AnimationTest-Info.plist │ │ ├── AnimationTest-Prefix.pch │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 8.3 │ ├── AnimationDelegate.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── AnimationDelegate.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── Classes │ │ ├── AnimationDelegate-Info.plist │ │ ├── AnimationDelegate-Prefix.pch │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 8.4 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── ClockFace-Info.plist │ │ ├── ClockFace-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── ClockFace.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── ClockFace.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── ClockFace.png │ │ ├── ClockFace@2x.png │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── HourHand.png │ │ ├── HourHand@2x.png │ │ ├── MinuteHand.png │ │ ├── MinuteHand@2x.png │ │ ├── SecondHand.png │ │ └── SecondHand@2x.png ├── 8.5 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── KeyframeTest-Info.plist │ │ ├── KeyframeTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ └── KeyframeTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── KeyframeTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 8.6 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── PathTest-Info.plist │ │ ├── PathTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Ship.png │ │ └── Ship@2x.png │ └── PathTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── PathTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 8.7 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── PathTest-Info.plist │ │ ├── PathTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Ship.png │ │ └── Ship@2x.png │ └── PathTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── PathTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 8.8 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── RotationTest-Info.plist │ │ ├── RotationTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Ship.png │ │ └── Ship@2x.png │ └── RotationTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── RotationTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── 8.9 │ ├── Classes │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── RotationTest-Info.plist │ ├── RotationTest-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── ViewController.xib │ └── main.m │ ├── Images │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Ship.png │ └── Ship@2x.png │ └── RotationTest.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ └── xcschemes │ │ └── RotationTest.xcscheme │ └── xcuserdata │ └── nick.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── Chapter 09 ├── 9.1 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── RepeatTest-Info.plist │ │ ├── RepeatTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Ship.png │ │ └── Ship@2x.png │ └── RepeatTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── RepeatTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 9.2 │ ├── AutoreverseTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── AutoreverseTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── AutoreverseTest-Info.plist │ │ ├── AutoreverseTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Door.png │ │ └── Door@2x.png ├── 9.3 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── TimeOffsetTest-Info.plist │ │ ├── TimeOffsetTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Ship.png │ │ └── Ship@2x.png │ └── TimeOffsetTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── TimeOffsetTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── 9.4 │ ├── Classes │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── ManualAnimation-Info.plist │ ├── ManualAnimation-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── ViewController.xib │ └── main.m │ ├── Images │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Door.png │ └── Door@2x.png │ └── ManualAnimation.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ └── xcschemes │ │ └── ManualAnimation.xcscheme │ └── xcuserdata │ └── nick.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── Chapter 10 ├── 10.1 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── EasingTest-Info.plist │ │ ├── EasingTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── EasingTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── EasingTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 10.2 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── UIKitEasing-Info.plist │ │ ├── UIKitEasing-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ └── UIKitEasing.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── UIKitEasing.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 10.3 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── KeyframeTest-Info.plist │ │ ├── KeyframeTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ └── KeyframeTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── KeyframeTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 10.4 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── EasingGraph-Info.plist │ │ ├── EasingGraph-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── EasingGraph.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── EasingGraph.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 10.5 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── EasedClock-Info.plist │ │ ├── EasedClock-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── EasedClock.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── EasedClock.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── ClockFace.png │ │ ├── ClockFace@2x.png │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── HourHand.png │ │ ├── HourHand@2x.png │ │ ├── MinuteHand.png │ │ ├── MinuteHand@2x.png │ │ ├── SecondHand.png │ │ └── SecondHand@2x.png ├── 10.6 │ ├── BouncyBall.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── BouncyBall.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── BouncyBall-Info.plist │ │ ├── BouncyBall-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ └── Images │ │ ├── Ball.png │ │ ├── Ball@2x.png │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 10.7 │ ├── BouncyBall.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── BouncyBall.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── BouncyBall-Info.plist │ │ ├── BouncyBall-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ └── Images │ │ ├── Ball.png │ │ ├── Ball@2x.png │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png └── 10.8 │ ├── BouncyBall.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── BouncyBall.xcscheme │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── Classes │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── BouncyBall-Info.plist │ ├── BouncyBall-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── ViewController.xib │ └── main.m │ └── Images │ ├── Ball.png │ ├── Ball@2x.png │ ├── Default-568h@2x.png │ ├── Default.png │ └── Default@2x.png ├── Chapter 11 ├── 11.1 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── TimerTest-Info.plist │ │ ├── TimerTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Ball.png │ │ ├── Ball@2x.png │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ └── TimerTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── TimerTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 11.2 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── DisplayLinkTest-Info.plist │ │ ├── DisplayLinkTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── DisplayLinkTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── DisplayLinkTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── Ball.png │ │ ├── Ball@2x.png │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 11.3 │ ├── Chipmunk-iPhone │ │ ├── chipmunk.h │ │ ├── chipmunk_ffi.h │ │ ├── chipmunk_private.h │ │ ├── chipmunk_types.h │ │ ├── chipmunk_unsafe.h │ │ ├── constraints │ │ │ ├── cpConstraint.h │ │ │ ├── cpDampedRotarySpring.h │ │ │ ├── cpDampedSpring.h │ │ │ ├── cpGearJoint.h │ │ │ ├── cpGrooveJoint.h │ │ │ ├── cpPinJoint.h │ │ │ ├── cpPivotJoint.h │ │ │ ├── cpRatchetJoint.h │ │ │ ├── cpRotaryLimitJoint.h │ │ │ ├── cpSimpleMotor.h │ │ │ ├── cpSlideJoint.h │ │ │ └── util.h │ │ ├── cpArbiter.h │ │ ├── cpBB.h │ │ ├── cpBody.h │ │ ├── cpPolyShape.h │ │ ├── cpShape.h │ │ ├── cpSpace.h │ │ ├── cpSpatialIndex.h │ │ ├── cpVect.h │ │ └── libChipmunk-iPhone.a │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── PhysicsTest-Info.plist │ │ ├── PhysicsTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Crate.png │ │ ├── Crate@2x.png │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ └── PhysicsTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── PhysicsTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 11.4 │ ├── Chipmunk-iPhone │ │ ├── chipmunk.h │ │ ├── chipmunk_ffi.h │ │ ├── chipmunk_private.h │ │ ├── chipmunk_types.h │ │ ├── chipmunk_unsafe.h │ │ ├── constraints │ │ │ ├── cpConstraint.h │ │ │ ├── cpDampedRotarySpring.h │ │ │ ├── cpDampedSpring.h │ │ │ ├── cpGearJoint.h │ │ │ ├── cpGrooveJoint.h │ │ │ ├── cpPinJoint.h │ │ │ ├── cpPivotJoint.h │ │ │ ├── cpRatchetJoint.h │ │ │ ├── cpRotaryLimitJoint.h │ │ │ ├── cpSimpleMotor.h │ │ │ ├── cpSlideJoint.h │ │ │ └── util.h │ │ ├── cpArbiter.h │ │ ├── cpBB.h │ │ ├── cpBody.h │ │ ├── cpPolyShape.h │ │ ├── cpShape.h │ │ ├── cpSpace.h │ │ ├── cpSpatialIndex.h │ │ ├── cpVect.h │ │ └── libChipmunk-iPhone.a │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── PhysicsTest-Info.plist │ │ ├── PhysicsTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Crate.png │ │ ├── Crate@2x.png │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ └── PhysicsTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── PhysicsTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── 11.5 │ ├── Chipmunk-iPhone │ ├── chipmunk.h │ ├── chipmunk_ffi.h │ ├── chipmunk_private.h │ ├── chipmunk_types.h │ ├── chipmunk_unsafe.h │ ├── constraints │ │ ├── cpConstraint.h │ │ ├── cpDampedRotarySpring.h │ │ ├── cpDampedSpring.h │ │ ├── cpGearJoint.h │ │ ├── cpGrooveJoint.h │ │ ├── cpPinJoint.h │ │ ├── cpPivotJoint.h │ │ ├── cpRatchetJoint.h │ │ ├── cpRotaryLimitJoint.h │ │ ├── cpSimpleMotor.h │ │ ├── cpSlideJoint.h │ │ └── util.h │ ├── cpArbiter.h │ ├── cpBB.h │ ├── cpBody.h │ ├── cpPolyShape.h │ ├── cpShape.h │ ├── cpSpace.h │ ├── cpSpatialIndex.h │ ├── cpVect.h │ └── libChipmunk-iPhone.a │ ├── Classes │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── SimulationTime-Info.plist │ ├── SimulationTime-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── ViewController.xib │ └── main.m │ ├── Images │ ├── Crate.png │ ├── Crate@2x.png │ ├── Default-568h@2x.png │ ├── Default.png │ └── Default@2x.png │ └── SimulationTime.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ └── xcschemes │ │ └── SimulationTime.xcscheme │ └── xcuserdata │ └── nick.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── Chapter 12 ├── 12.1 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Performance-Info.plist │ │ ├── Performance-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Anchor.png │ │ ├── Cone.png │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Igloo.png │ │ ├── Key.png │ │ ├── Snowman.png │ │ └── Spaceship.png │ └── Performance.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── Performance.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── 12.2 │ ├── Classes │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Performance-Info.plist │ ├── Performance-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── ViewController.xib │ └── main.m │ ├── Images │ ├── Anchor.png │ ├── Cone.png │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Igloo.png │ ├── Key.png │ ├── Snowman.png │ └── Spaceship.png │ └── Performance.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ └── xcschemes │ │ └── Performance.xcscheme │ └── xcuserdata │ └── nick.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── Chapter 13 ├── 13.1 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── DrawingTest-Info.plist │ │ ├── DrawingTest-Prefix.pch │ │ ├── DrawingView.h │ │ ├── DrawingView.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── DrawingTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── DrawingTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 13.2 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── DrawingTest-Info.plist │ │ ├── DrawingTest-Prefix.pch │ │ ├── DrawingView.h │ │ ├── DrawingView.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── DrawingTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ ├── DrawingTest.xcscheme │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 13.3 │ ├── Chalkboard.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── Chalkboard.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Chalkboard-Info.plist │ │ ├── Chalkboard-Prefix.pch │ │ ├── DrawingView.h │ │ ├── DrawingView.m │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ └── Images │ │ ├── Chalk.png │ │ ├── Chalk@2x.png │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png └── 13.4 │ ├── Chalkboard.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── Chalkboard.xcscheme │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── Classes │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Chalkboard-Info.plist │ ├── Chalkboard-Prefix.pch │ ├── DrawingView.h │ ├── DrawingView.m │ ├── ViewController.h │ ├── ViewController.m │ ├── ViewController.xib │ └── main.m │ └── Images │ ├── Chalk.png │ ├── Chalk@2x.png │ ├── Default-568h@2x.png │ ├── Default.png │ └── Default@2x.png ├── Chapter 14 ├── 14.1 │ ├── CarouselTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── CarouselTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── CarouselTest-Info.plist │ │ ├── CarouselTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 14.2 │ ├── CarouselTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── CarouselTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── CarouselTest-Info.plist │ │ ├── CarouselTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 14.3 │ ├── CarouselTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── CarouselTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── CarouselTest-Info.plist │ │ ├── CarouselTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 14.4 │ ├── CarouselTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── CarouselTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── CarouselTest-Info.plist │ │ ├── CarouselTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 14.5 │ ├── CarouselTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── CarouselTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── CarouselTest-Info.plist │ │ ├── CarouselTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 14.6 │ ├── Benchmark.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── Benchmark.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Benchmark-Info.plist │ │ ├── Benchmark-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png ├── 14.7 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── HybridImage-Info.plist │ │ ├── HybridImage-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── HybridImage.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ ├── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcuserdata │ │ │ │ └── nick.xcuserdatad │ │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── DrawingTest.xcscheme │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Snowman.jpg │ │ └── SnowmanMask.png ├── 14.8 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── PVRTCTest-Info.plist │ │ ├── PVRTCTest-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ └── Snowman.pvr │ └── PVRTCTest.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── LayerTest.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── LayerTest.xcscheme │ │ └── xcschememanagement.plist ├── Coast Photos │ ├── 1024x768.jpg │ ├── 1024x768.png │ ├── 128x96.jpg │ ├── 128x96.png │ ├── 2048x1536.jpg │ ├── 2048x1536.png │ ├── 256x192.jpg │ ├── 256x192.png │ ├── 32x24.jpg │ ├── 32x24.png │ ├── 512x384.jpg │ ├── 512x384.png │ ├── 64x48.jpg │ └── 64x48.png ├── Gradient Images │ ├── 1024x768.jpg │ ├── 1024x768.png │ ├── 128x96.jpg │ ├── 128x96.png │ ├── 2048x1536.jpg │ ├── 2048x1536.png │ ├── 256x192.jpg │ ├── 256x192.png │ ├── 32x24.jpg │ ├── 32x24.png │ ├── 512x384.jpg │ ├── 512x384.png │ ├── 64x48.jpg │ └── 64x48.png └── Vacation Photos │ ├── IMG_0150.png │ ├── IMG_0154.png │ ├── IMG_0163.png │ ├── IMG_0169.png │ ├── IMG_0170.png │ ├── IMG_0173.png │ ├── IMG_0174.png │ ├── IMG_0180.png │ ├── IMG_0181.png │ ├── IMG_0184.png │ └── IMG_0197.png ├── Chapter 15 ├── 15.1 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── RoundedCorners-Info.plist │ │ ├── RoundedCorners-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ └── RoundedCorners.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── RoundedCorners.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 15.2 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── RoundedCorners-Info.plist │ │ ├── RoundedCorners-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Rounded.png │ │ └── Rounded@2x.png │ └── RoundedCorners.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── RoundedCorners.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 15.3 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Parallax-Info.plist │ │ ├── Parallax-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ └── Parallax.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── Parallax.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── 15.4 │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Parallax-Info.plist │ │ ├── Parallax-Prefix.pch │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── ViewController.xib │ │ └── main.m │ ├── Images │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ └── Parallax.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── nick.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── Parallax.xcscheme │ │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── 15.5 │ ├── Classes │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Parallax-Info.plist │ ├── Parallax-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── ViewController.xib │ └── main.m │ ├── Images │ ├── Default-568h@2x.png │ ├── Default.png │ └── Default@2x.png │ └── Parallax.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── nick.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings │ ├── xcshareddata │ └── xcschemes │ │ └── Parallax.xcscheme │ └── xcuserdata │ └── nick.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist └── README.md /CATiledLayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/CATiledLayer.png -------------------------------------------------------------------------------- /Chapter 01/1.1/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 01/1.1/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 01/1.1/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 01/1.1/Images/Default.png -------------------------------------------------------------------------------- /Chapter 01/1.1/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 01/1.1/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 01/1.1/LayerTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 02/2.1/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 02/2.1/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 02/2.1/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 02/2.1/Images/Default.png -------------------------------------------------------------------------------- /Chapter 02/2.1/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 02/2.1/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 02/2.1/Images/Snowman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 02/2.1/Images/Snowman.png -------------------------------------------------------------------------------- /Chapter 02/2.1/Images/Snowman@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 02/2.1/Images/Snowman@2x.png -------------------------------------------------------------------------------- /Chapter 02/2.2/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 02/2.2/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 02/2.2/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 02/2.2/Images/Default.png -------------------------------------------------------------------------------- /Chapter 02/2.2/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 02/2.2/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 02/2.2/Images/Snowman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 02/2.2/Images/Snowman.png -------------------------------------------------------------------------------- /Chapter 02/2.2/Images/Snowman@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 02/2.2/Images/Snowman@2x.png -------------------------------------------------------------------------------- /Chapter 02/2.3/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 02/2.3/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 02/2.3/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 02/2.3/Images/Default.png -------------------------------------------------------------------------------- /Chapter 02/2.3/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 02/2.3/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 02/2.3/Images/Sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 02/2.3/Images/Sprites.png -------------------------------------------------------------------------------- /Chapter 02/2.3/Images/Sprites@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 02/2.3/Images/Sprites@2x.png -------------------------------------------------------------------------------- /Chapter 02/2.4/Images/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 02/2.4/Images/Button.png -------------------------------------------------------------------------------- /Chapter 02/2.4/Images/Button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 02/2.4/Images/Button@2x.png -------------------------------------------------------------------------------- /Chapter 02/2.4/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 02/2.4/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 02/2.4/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 02/2.4/Images/Default.png -------------------------------------------------------------------------------- /Chapter 02/2.4/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 02/2.4/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 02/2.5/DrawingTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 02/2.5/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 02/2.5/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 02/2.5/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 02/2.5/Images/Default.png -------------------------------------------------------------------------------- /Chapter 02/2.5/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 02/2.5/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 03/3.1/ClockFace.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 03/3.1/ClockFace.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 03/3.1/Images/ClockFace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.1/Images/ClockFace.png -------------------------------------------------------------------------------- /Chapter 03/3.1/Images/ClockFace@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.1/Images/ClockFace@2x.png -------------------------------------------------------------------------------- /Chapter 03/3.1/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.1/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 03/3.1/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.1/Images/Default.png -------------------------------------------------------------------------------- /Chapter 03/3.1/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.1/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 03/3.1/Images/HourHand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.1/Images/HourHand.png -------------------------------------------------------------------------------- /Chapter 03/3.1/Images/HourHand@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.1/Images/HourHand@2x.png -------------------------------------------------------------------------------- /Chapter 03/3.1/Images/MinuteHand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.1/Images/MinuteHand.png -------------------------------------------------------------------------------- /Chapter 03/3.1/Images/MinuteHand@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.1/Images/MinuteHand@2x.png -------------------------------------------------------------------------------- /Chapter 03/3.1/Images/SecondHand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.1/Images/SecondHand.png -------------------------------------------------------------------------------- /Chapter 03/3.1/Images/SecondHand@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.1/Images/SecondHand@2x.png -------------------------------------------------------------------------------- /Chapter 03/3.2/ClockFace.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 03/3.2/ClockFace.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 03/3.2/Images/ClockFace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.2/Images/ClockFace.png -------------------------------------------------------------------------------- /Chapter 03/3.2/Images/ClockFace@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.2/Images/ClockFace@2x.png -------------------------------------------------------------------------------- /Chapter 03/3.2/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.2/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 03/3.2/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.2/Images/Default.png -------------------------------------------------------------------------------- /Chapter 03/3.2/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.2/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 03/3.2/Images/HourHand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.2/Images/HourHand.png -------------------------------------------------------------------------------- /Chapter 03/3.2/Images/HourHand@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.2/Images/HourHand@2x.png -------------------------------------------------------------------------------- /Chapter 03/3.2/Images/MinuteHand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.2/Images/MinuteHand.png -------------------------------------------------------------------------------- /Chapter 03/3.2/Images/MinuteHand@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.2/Images/MinuteHand@2x.png -------------------------------------------------------------------------------- /Chapter 03/3.2/Images/SecondHand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.2/Images/SecondHand.png -------------------------------------------------------------------------------- /Chapter 03/3.2/Images/SecondHand@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.2/Images/SecondHand@2x.png -------------------------------------------------------------------------------- /Chapter 03/3.3/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.3/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 03/3.3/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.3/Images/Default.png -------------------------------------------------------------------------------- /Chapter 03/3.3/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.3/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 03/3.4/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.4/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 03/3.4/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.4/Images/Default.png -------------------------------------------------------------------------------- /Chapter 03/3.4/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.4/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 03/3.4/LayerTouchTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 03/3.5/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.5/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 03/3.5/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.5/Images/Default.png -------------------------------------------------------------------------------- /Chapter 03/3.5/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 03/3.5/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 03/3.5/LayerTouchTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 04/4.1/ClipTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 04/4.1/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.1/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 04/4.1/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.1/Images/Default.png -------------------------------------------------------------------------------- /Chapter 04/4.1/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.1/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 04/4.2/ClipTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 04/4.2/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.2/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 04/4.2/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.2/Images/Default.png -------------------------------------------------------------------------------- /Chapter 04/4.2/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.2/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 04/4.3/ClipTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 04/4.3/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.3/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 04/4.3/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.3/Images/Default.png -------------------------------------------------------------------------------- /Chapter 04/4.3/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.3/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 04/4.4/Images/Cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.4/Images/Cone.png -------------------------------------------------------------------------------- /Chapter 04/4.4/Images/Cone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.4/Images/Cone@2x.png -------------------------------------------------------------------------------- /Chapter 04/4.4/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.4/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 04/4.4/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.4/Images/Default.png -------------------------------------------------------------------------------- /Chapter 04/4.4/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.4/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 04/4.4/ShadowTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 04/4.5/Images/Cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.5/Images/Cone.png -------------------------------------------------------------------------------- /Chapter 04/4.5/Images/Cone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.5/Images/Cone@2x.png -------------------------------------------------------------------------------- /Chapter 04/4.5/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.5/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 04/4.5/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.5/Images/Default.png -------------------------------------------------------------------------------- /Chapter 04/4.5/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.5/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 04/4.5/Images/Igloo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.5/Images/Igloo.png -------------------------------------------------------------------------------- /Chapter 04/4.5/Images/Igloo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.5/Images/Igloo@2x.png -------------------------------------------------------------------------------- /Chapter 04/4.5/MaskTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 04/4.5/MaskTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 04/4.6/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.6/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 04/4.6/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.6/Images/Default.png -------------------------------------------------------------------------------- /Chapter 04/4.6/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.6/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 04/4.6/Images/Digits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.6/Images/Digits.png -------------------------------------------------------------------------------- /Chapter 04/4.6/LCDClock.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 04/4.6/LCDClock.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 04/4.7/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.7/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 04/4.7/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.7/Images/Default.png -------------------------------------------------------------------------------- /Chapter 04/4.7/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 04/4.7/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.1/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.1/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.1/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.1/Images/Default.png -------------------------------------------------------------------------------- /Chapter 05/5.1/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.1/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.1/Images/Snowman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.1/Images/Snowman.png -------------------------------------------------------------------------------- /Chapter 05/5.1/Images/Snowman@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.1/Images/Snowman@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.1/LayerTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 05/5.10/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.10/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.10/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.10/Images/Default.png -------------------------------------------------------------------------------- /Chapter 05/5.10/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.10/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.10/LightingTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 05/5.2/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.2/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.2/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.2/Images/Default.png -------------------------------------------------------------------------------- /Chapter 05/5.2/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.2/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.2/Images/Snowman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.2/Images/Snowman.png -------------------------------------------------------------------------------- /Chapter 05/5.2/Images/Snowman@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.2/Images/Snowman@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.2/LayerTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 05/5.3/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.3/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.3/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.3/Images/Default.png -------------------------------------------------------------------------------- /Chapter 05/5.3/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.3/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.3/Images/Snowman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.3/Images/Snowman.png -------------------------------------------------------------------------------- /Chapter 05/5.3/Images/Snowman@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.3/Images/Snowman@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.3/LayerTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 05/5.4/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.4/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.4/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.4/Images/Default.png -------------------------------------------------------------------------------- /Chapter 05/5.4/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.4/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.4/Images/Snowman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.4/Images/Snowman.png -------------------------------------------------------------------------------- /Chapter 05/5.4/Images/Snowman@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.4/Images/Snowman@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.4/LayerTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 05/5.5/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.5/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.5/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.5/Images/Default.png -------------------------------------------------------------------------------- /Chapter 05/5.5/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.5/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.5/Images/Snowman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.5/Images/Snowman.png -------------------------------------------------------------------------------- /Chapter 05/5.5/Images/Snowman@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.5/Images/Snowman@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.5/LayerTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 05/5.6/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.6/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.6/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.6/Images/Default.png -------------------------------------------------------------------------------- /Chapter 05/5.6/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.6/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.6/Images/Snowman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.6/Images/Snowman.png -------------------------------------------------------------------------------- /Chapter 05/5.6/Images/Snowman@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.6/Images/Snowman@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.6/LayerTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 05/5.7/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.7/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.7/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.7/Images/Default.png -------------------------------------------------------------------------------- /Chapter 05/5.7/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.7/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.7/LayerTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 05/5.8/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.8/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.8/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.8/Images/Default.png -------------------------------------------------------------------------------- /Chapter 05/5.8/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.8/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.8/LayerTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 05/5.9/CubeTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 05/5.9/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.9/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 05/5.9/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.9/Images/Default.png -------------------------------------------------------------------------------- /Chapter 05/5.9/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 05/5.9/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.1/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.1/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.1/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.1/Images/Default.png -------------------------------------------------------------------------------- /Chapter 06/6.1/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.1/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.10/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.10/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.10/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.10/Images/Default.png -------------------------------------------------------------------------------- /Chapter 06/6.10/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.10/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.10/Images/Snowman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.10/Images/Snowman.png -------------------------------------------------------------------------------- /Chapter 06/6.10/Images/Snowman@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.10/Images/Snowman@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.10/ScrollTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 06/6.11/TileCutter.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 06/6.11/TileCutter/TileCutter-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TileCutter' target in the 'TileCutter' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Default.png -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_00_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_00_00.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_00_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_00_01.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_00_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_00_02.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_00_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_00_03.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_00_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_00_04.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_00_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_00_05.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_00_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_00_06.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_00_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_00_07.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_01_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_01_00.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_01_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_01_01.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_01_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_01_02.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_01_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_01_03.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_01_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_01_04.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_01_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_01_05.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_01_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_01_06.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_01_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_01_07.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_02_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_02_00.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_02_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_02_01.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_02_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_02_02.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_02_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_02_03.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_02_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_02_04.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_02_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_02_05.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_02_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_02_06.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_02_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_02_07.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_03_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_03_00.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_03_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_03_01.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_03_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_03_02.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_03_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_03_03.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_03_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_03_04.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_03_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_03_05.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_03_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_03_06.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_03_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_03_07.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_04_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_04_00.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_04_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_04_01.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_04_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_04_02.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_04_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_04_03.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_04_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_04_04.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_04_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_04_05.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_04_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_04_06.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_04_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_04_07.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_05_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_05_00.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_05_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_05_01.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_05_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_05_02.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_05_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_05_03.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_05_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_05_04.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_05_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_05_05.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_05_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_05_06.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_05_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_05_07.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_06_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_06_00.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_06_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_06_01.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_06_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_06_02.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_06_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_06_03.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_06_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_06_04.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_06_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_06_05.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_06_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_06_06.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_06_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_06_07.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_07_00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_07_00.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_07_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_07_01.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_07_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_07_02.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_07_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_07_03.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_07_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_07_04.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_07_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_07_05.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_07_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_07_06.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/Images/Snowman_07_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.12/Images/Snowman_07_07.jpg -------------------------------------------------------------------------------- /Chapter 06/6.12/TileTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 06/6.12/TileTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 06/6.13/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.13/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.13/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.13/Images/Default.png -------------------------------------------------------------------------------- /Chapter 06/6.13/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.13/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.13/Images/Spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.13/Images/Spark.png -------------------------------------------------------------------------------- /Chapter 06/6.14/GLTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 06/6.14/GLTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 06/6.14/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.14/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.14/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.14/Images/Default.png -------------------------------------------------------------------------------- /Chapter 06/6.14/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.14/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.15/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.15/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.15/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.15/Images/Default.png -------------------------------------------------------------------------------- /Chapter 06/6.15/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.15/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.15/Video/Ship.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.15/Video/Ship.mp4 -------------------------------------------------------------------------------- /Chapter 06/6.15/VideoTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 06/6.16/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.16/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.16/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.16/Images/Default.png -------------------------------------------------------------------------------- /Chapter 06/6.16/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.16/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.16/Video/Ship.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.16/Video/Ship.mp4 -------------------------------------------------------------------------------- /Chapter 06/6.16/VideoTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 06/6.2/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.2/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.2/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.2/Images/Default.png -------------------------------------------------------------------------------- /Chapter 06/6.2/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.2/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.3/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.3/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.3/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.3/Images/Default.png -------------------------------------------------------------------------------- /Chapter 06/6.3/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.3/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.4/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.4/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.4/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.4/Images/Default.png -------------------------------------------------------------------------------- /Chapter 06/6.4/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.4/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.4/LayerLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 06/6.4/LayerLabel.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 06/6.5/CubeTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 06/6.5/CubeTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 06/6.5/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.5/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.5/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.5/Images/Default.png -------------------------------------------------------------------------------- /Chapter 06/6.5/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.5/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.6/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.6/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.6/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.6/Images/Default.png -------------------------------------------------------------------------------- /Chapter 06/6.6/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.6/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.7/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.7/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.7/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.7/Images/Default.png -------------------------------------------------------------------------------- /Chapter 06/6.7/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.7/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.8/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.8/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.8/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.8/Images/Default.png -------------------------------------------------------------------------------- /Chapter 06/6.8/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.8/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.8/ReplicatorTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 06/6.9/Images/Anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.9/Images/Anchor.png -------------------------------------------------------------------------------- /Chapter 06/6.9/Images/Anchor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.9/Images/Anchor@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.9/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.9/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.9/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.9/Images/Default.png -------------------------------------------------------------------------------- /Chapter 06/6.9/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 06/6.9/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 06/6.9/ReflectionTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 07/7.1/AnimationTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 07/7.1/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 07/7.1/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 07/7.1/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 07/7.1/Images/Default.png -------------------------------------------------------------------------------- /Chapter 07/7.1/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 07/7.1/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 07/7.2/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 07/7.2/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 07/7.2/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 07/7.2/Images/Default.png -------------------------------------------------------------------------------- /Chapter 07/7.2/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 07/7.2/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 07/7.2/TransactionTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 07/7.3/CompletionTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 07/7.3/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 07/7.3/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 07/7.3/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 07/7.3/Images/Default.png -------------------------------------------------------------------------------- /Chapter 07/7.3/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 07/7.3/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 07/7.4/DurationTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 07/7.4/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 07/7.4/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 07/7.4/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 07/7.4/Images/Default.png -------------------------------------------------------------------------------- /Chapter 07/7.4/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 07/7.4/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 07/7.5/ActionTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 07/7.5/ActionTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 07/7.5/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 07/7.5/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 07/7.5/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 07/7.5/Images/Default.png -------------------------------------------------------------------------------- /Chapter 07/7.5/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 07/7.5/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 07/7.6/CustomActionTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 07/7.6/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 07/7.6/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 07/7.6/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 07/7.6/Images/Default.png -------------------------------------------------------------------------------- /Chapter 07/7.6/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 07/7.6/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 07/7.7/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 07/7.7/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 07/7.7/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 07/7.7/Images/Default.png -------------------------------------------------------------------------------- /Chapter 07/7.7/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 07/7.7/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 07/7.7/PresentationLayerTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 08/8.1/AnimationTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 08/8.1/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.1/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.1/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.1/Images/Default.png -------------------------------------------------------------------------------- /Chapter 08/8.1/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.1/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.10/GroupTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 08/8.10/GroupTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 08/8.10/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.10/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.10/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.10/Images/Default.png -------------------------------------------------------------------------------- /Chapter 08/8.10/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.10/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.11/Images/Anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.11/Images/Anchor.png -------------------------------------------------------------------------------- /Chapter 08/8.11/Images/Anchor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.11/Images/Anchor@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.11/Images/Cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.11/Images/Cone.png -------------------------------------------------------------------------------- /Chapter 08/8.11/Images/Cone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.11/Images/Cone@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.11/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.11/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.11/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.11/Images/Default.png -------------------------------------------------------------------------------- /Chapter 08/8.11/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.11/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.11/Images/Igloo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.11/Images/Igloo.png -------------------------------------------------------------------------------- /Chapter 08/8.11/Images/Igloo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.11/Images/Igloo@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.11/Images/Spaceship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.11/Images/Spaceship.png -------------------------------------------------------------------------------- /Chapter 08/8.11/Images/Spaceship@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.11/Images/Spaceship@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.12/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.12/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.12/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.12/Images/Default.png -------------------------------------------------------------------------------- /Chapter 08/8.12/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.12/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.12/Images/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.12/Images/first.png -------------------------------------------------------------------------------- /Chapter 08/8.12/Images/first@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.12/Images/first@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.12/Images/second.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.12/Images/second.png -------------------------------------------------------------------------------- /Chapter 08/8.12/Images/second@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.12/Images/second@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.13/Images/Anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.13/Images/Anchor.png -------------------------------------------------------------------------------- /Chapter 08/8.13/Images/Anchor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.13/Images/Anchor@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.13/Images/Cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.13/Images/Cone.png -------------------------------------------------------------------------------- /Chapter 08/8.13/Images/Cone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.13/Images/Cone@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.13/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.13/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.13/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.13/Images/Default.png -------------------------------------------------------------------------------- /Chapter 08/8.13/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.13/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.13/Images/Igloo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.13/Images/Igloo.png -------------------------------------------------------------------------------- /Chapter 08/8.13/Images/Igloo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.13/Images/Igloo@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.13/Images/Spaceship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.13/Images/Spaceship.png -------------------------------------------------------------------------------- /Chapter 08/8.13/Images/Spaceship@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.13/Images/Spaceship@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.14/CustomTransition.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 08/8.14/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.14/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.14/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.14/Images/Default.png -------------------------------------------------------------------------------- /Chapter 08/8.14/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.14/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.14/Images/Ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.14/Images/Ship.png -------------------------------------------------------------------------------- /Chapter 08/8.14/Images/Ship@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.14/Images/Ship@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.15/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.15/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.15/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.15/Images/Default.png -------------------------------------------------------------------------------- /Chapter 08/8.15/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.15/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.15/Images/Ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.15/Images/Ship.png -------------------------------------------------------------------------------- /Chapter 08/8.15/Images/Ship@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.15/Images/Ship@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.15/StartStopTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 08/8.2/AnimationTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 08/8.2/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.2/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.2/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.2/Images/Default.png -------------------------------------------------------------------------------- /Chapter 08/8.2/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.2/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.3/AnimationDelegate.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 08/8.3/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.3/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.3/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.3/Images/Default.png -------------------------------------------------------------------------------- /Chapter 08/8.3/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.3/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.4/ClockFace.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 08/8.4/ClockFace.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 08/8.4/Images/ClockFace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.4/Images/ClockFace.png -------------------------------------------------------------------------------- /Chapter 08/8.4/Images/ClockFace@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.4/Images/ClockFace@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.4/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.4/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.4/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.4/Images/Default.png -------------------------------------------------------------------------------- /Chapter 08/8.4/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.4/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.4/Images/HourHand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.4/Images/HourHand.png -------------------------------------------------------------------------------- /Chapter 08/8.4/Images/HourHand@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.4/Images/HourHand@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.4/Images/MinuteHand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.4/Images/MinuteHand.png -------------------------------------------------------------------------------- /Chapter 08/8.4/Images/MinuteHand@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.4/Images/MinuteHand@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.4/Images/SecondHand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.4/Images/SecondHand.png -------------------------------------------------------------------------------- /Chapter 08/8.4/Images/SecondHand@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.4/Images/SecondHand@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.5/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.5/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.5/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.5/Images/Default.png -------------------------------------------------------------------------------- /Chapter 08/8.5/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.5/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.5/KeyframeTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 08/8.6/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.6/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.6/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.6/Images/Default.png -------------------------------------------------------------------------------- /Chapter 08/8.6/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.6/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.6/Images/Ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.6/Images/Ship.png -------------------------------------------------------------------------------- /Chapter 08/8.6/Images/Ship@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.6/Images/Ship@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.6/PathTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 08/8.6/PathTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 08/8.7/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.7/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.7/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.7/Images/Default.png -------------------------------------------------------------------------------- /Chapter 08/8.7/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.7/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.7/Images/Ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.7/Images/Ship.png -------------------------------------------------------------------------------- /Chapter 08/8.7/Images/Ship@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.7/Images/Ship@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.7/PathTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 08/8.7/PathTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 08/8.8/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.8/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.8/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.8/Images/Default.png -------------------------------------------------------------------------------- /Chapter 08/8.8/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.8/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.8/Images/Ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.8/Images/Ship.png -------------------------------------------------------------------------------- /Chapter 08/8.8/Images/Ship@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.8/Images/Ship@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.8/RotationTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 08/8.9/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.9/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.9/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.9/Images/Default.png -------------------------------------------------------------------------------- /Chapter 08/8.9/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.9/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.9/Images/Ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.9/Images/Ship.png -------------------------------------------------------------------------------- /Chapter 08/8.9/Images/Ship@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 08/8.9/Images/Ship@2x.png -------------------------------------------------------------------------------- /Chapter 08/8.9/RotationTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 09/9.1/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 09/9.1/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 09/9.1/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 09/9.1/Images/Default.png -------------------------------------------------------------------------------- /Chapter 09/9.1/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 09/9.1/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 09/9.1/Images/Ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 09/9.1/Images/Ship.png -------------------------------------------------------------------------------- /Chapter 09/9.1/Images/Ship@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 09/9.1/Images/Ship@2x.png -------------------------------------------------------------------------------- /Chapter 09/9.1/RepeatTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 09/9.1/RepeatTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 09/9.2/AutoreverseTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 09/9.2/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 09/9.2/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 09/9.2/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 09/9.2/Images/Default.png -------------------------------------------------------------------------------- /Chapter 09/9.2/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 09/9.2/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 09/9.2/Images/Door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 09/9.2/Images/Door.png -------------------------------------------------------------------------------- /Chapter 09/9.2/Images/Door@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 09/9.2/Images/Door@2x.png -------------------------------------------------------------------------------- /Chapter 09/9.3/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 09/9.3/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 09/9.3/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 09/9.3/Images/Default.png -------------------------------------------------------------------------------- /Chapter 09/9.3/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 09/9.3/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 09/9.3/Images/Ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 09/9.3/Images/Ship.png -------------------------------------------------------------------------------- /Chapter 09/9.3/Images/Ship@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 09/9.3/Images/Ship@2x.png -------------------------------------------------------------------------------- /Chapter 09/9.3/TimeOffsetTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 09/9.4/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 09/9.4/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 09/9.4/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 09/9.4/Images/Default.png -------------------------------------------------------------------------------- /Chapter 09/9.4/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 09/9.4/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 09/9.4/Images/Door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 09/9.4/Images/Door.png -------------------------------------------------------------------------------- /Chapter 09/9.4/Images/Door@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 09/9.4/Images/Door@2x.png -------------------------------------------------------------------------------- /Chapter 09/9.4/ManualAnimation.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 10/10.1/EasingTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 10/10.1/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.1/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 10/10.1/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.1/Images/Default.png -------------------------------------------------------------------------------- /Chapter 10/10.1/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.1/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 10/10.2/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.2/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 10/10.2/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.2/Images/Default.png -------------------------------------------------------------------------------- /Chapter 10/10.2/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.2/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 10/10.2/UIKitEasing.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 10/10.3/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.3/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 10/10.3/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.3/Images/Default.png -------------------------------------------------------------------------------- /Chapter 10/10.3/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.3/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 10/10.3/KeyframeTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 10/10.4/EasingGraph.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 10/10.4/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.4/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 10/10.4/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.4/Images/Default.png -------------------------------------------------------------------------------- /Chapter 10/10.4/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.4/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 10/10.5/EasedClock.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 10/10.5/Images/ClockFace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.5/Images/ClockFace.png -------------------------------------------------------------------------------- /Chapter 10/10.5/Images/ClockFace@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.5/Images/ClockFace@2x.png -------------------------------------------------------------------------------- /Chapter 10/10.5/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.5/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 10/10.5/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.5/Images/Default.png -------------------------------------------------------------------------------- /Chapter 10/10.5/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.5/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 10/10.5/Images/HourHand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.5/Images/HourHand.png -------------------------------------------------------------------------------- /Chapter 10/10.5/Images/HourHand@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.5/Images/HourHand@2x.png -------------------------------------------------------------------------------- /Chapter 10/10.5/Images/MinuteHand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.5/Images/MinuteHand.png -------------------------------------------------------------------------------- /Chapter 10/10.5/Images/MinuteHand@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.5/Images/MinuteHand@2x.png -------------------------------------------------------------------------------- /Chapter 10/10.5/Images/SecondHand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.5/Images/SecondHand.png -------------------------------------------------------------------------------- /Chapter 10/10.5/Images/SecondHand@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.5/Images/SecondHand@2x.png -------------------------------------------------------------------------------- /Chapter 10/10.6/BouncyBall.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 10/10.6/Images/Ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.6/Images/Ball.png -------------------------------------------------------------------------------- /Chapter 10/10.6/Images/Ball@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.6/Images/Ball@2x.png -------------------------------------------------------------------------------- /Chapter 10/10.6/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.6/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 10/10.6/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.6/Images/Default.png -------------------------------------------------------------------------------- /Chapter 10/10.6/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.6/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 10/10.7/BouncyBall.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 10/10.7/Images/Ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.7/Images/Ball.png -------------------------------------------------------------------------------- /Chapter 10/10.7/Images/Ball@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.7/Images/Ball@2x.png -------------------------------------------------------------------------------- /Chapter 10/10.7/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.7/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 10/10.7/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.7/Images/Default.png -------------------------------------------------------------------------------- /Chapter 10/10.7/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.7/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 10/10.8/BouncyBall.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 10/10.8/Images/Ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.8/Images/Ball.png -------------------------------------------------------------------------------- /Chapter 10/10.8/Images/Ball@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.8/Images/Ball@2x.png -------------------------------------------------------------------------------- /Chapter 10/10.8/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.8/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 10/10.8/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.8/Images/Default.png -------------------------------------------------------------------------------- /Chapter 10/10.8/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 10/10.8/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 11/11.1/Images/Ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.1/Images/Ball.png -------------------------------------------------------------------------------- /Chapter 11/11.1/Images/Ball@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.1/Images/Ball@2x.png -------------------------------------------------------------------------------- /Chapter 11/11.1/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.1/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 11/11.1/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.1/Images/Default.png -------------------------------------------------------------------------------- /Chapter 11/11.1/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.1/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 11/11.1/TimerTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 11/11.1/TimerTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 11/11.2/DisplayLinkTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 11/11.2/Images/Ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.2/Images/Ball.png -------------------------------------------------------------------------------- /Chapter 11/11.2/Images/Ball@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.2/Images/Ball@2x.png -------------------------------------------------------------------------------- /Chapter 11/11.2/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.2/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 11/11.2/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.2/Images/Default.png -------------------------------------------------------------------------------- /Chapter 11/11.2/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.2/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 11/11.3/Chipmunk-iPhone/libChipmunk-iPhone.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.3/Chipmunk-iPhone/libChipmunk-iPhone.a -------------------------------------------------------------------------------- /Chapter 11/11.3/Images/Crate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.3/Images/Crate.png -------------------------------------------------------------------------------- /Chapter 11/11.3/Images/Crate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.3/Images/Crate@2x.png -------------------------------------------------------------------------------- /Chapter 11/11.3/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.3/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 11/11.3/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.3/Images/Default.png -------------------------------------------------------------------------------- /Chapter 11/11.3/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.3/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 11/11.3/PhysicsTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 11/11.4/Chipmunk-iPhone/libChipmunk-iPhone.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.4/Chipmunk-iPhone/libChipmunk-iPhone.a -------------------------------------------------------------------------------- /Chapter 11/11.4/Images/Crate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.4/Images/Crate.png -------------------------------------------------------------------------------- /Chapter 11/11.4/Images/Crate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.4/Images/Crate@2x.png -------------------------------------------------------------------------------- /Chapter 11/11.4/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.4/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 11/11.4/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.4/Images/Default.png -------------------------------------------------------------------------------- /Chapter 11/11.4/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.4/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 11/11.4/PhysicsTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 11/11.5/Chipmunk-iPhone/libChipmunk-iPhone.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.5/Chipmunk-iPhone/libChipmunk-iPhone.a -------------------------------------------------------------------------------- /Chapter 11/11.5/Images/Crate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.5/Images/Crate.png -------------------------------------------------------------------------------- /Chapter 11/11.5/Images/Crate@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.5/Images/Crate@2x.png -------------------------------------------------------------------------------- /Chapter 11/11.5/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.5/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 11/11.5/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.5/Images/Default.png -------------------------------------------------------------------------------- /Chapter 11/11.5/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 11/11.5/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 11/11.5/SimulationTime.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 12/12.1/Images/Anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 12/12.1/Images/Anchor.png -------------------------------------------------------------------------------- /Chapter 12/12.1/Images/Cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 12/12.1/Images/Cone.png -------------------------------------------------------------------------------- /Chapter 12/12.1/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 12/12.1/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 12/12.1/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 12/12.1/Images/Default.png -------------------------------------------------------------------------------- /Chapter 12/12.1/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 12/12.1/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 12/12.1/Images/Igloo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 12/12.1/Images/Igloo.png -------------------------------------------------------------------------------- /Chapter 12/12.1/Images/Key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 12/12.1/Images/Key.png -------------------------------------------------------------------------------- /Chapter 12/12.1/Images/Snowman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 12/12.1/Images/Snowman.png -------------------------------------------------------------------------------- /Chapter 12/12.1/Images/Spaceship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 12/12.1/Images/Spaceship.png -------------------------------------------------------------------------------- /Chapter 12/12.2/Images/Anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 12/12.2/Images/Anchor.png -------------------------------------------------------------------------------- /Chapter 12/12.2/Images/Cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 12/12.2/Images/Cone.png -------------------------------------------------------------------------------- /Chapter 12/12.2/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 12/12.2/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 12/12.2/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 12/12.2/Images/Default.png -------------------------------------------------------------------------------- /Chapter 12/12.2/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 12/12.2/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 12/12.2/Images/Igloo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 12/12.2/Images/Igloo.png -------------------------------------------------------------------------------- /Chapter 12/12.2/Images/Key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 12/12.2/Images/Key.png -------------------------------------------------------------------------------- /Chapter 12/12.2/Images/Snowman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 12/12.2/Images/Snowman.png -------------------------------------------------------------------------------- /Chapter 12/12.2/Images/Spaceship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 12/12.2/Images/Spaceship.png -------------------------------------------------------------------------------- /Chapter 12/12.2/Performance.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 13/13.1/DrawingTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 13/13.1/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 13/13.1/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 13/13.1/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 13/13.1/Images/Default.png -------------------------------------------------------------------------------- /Chapter 13/13.1/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 13/13.1/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 13/13.2/DrawingTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 13/13.2/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 13/13.2/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 13/13.2/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 13/13.2/Images/Default.png -------------------------------------------------------------------------------- /Chapter 13/13.2/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 13/13.2/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 13/13.3/Chalkboard.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 13/13.3/Images/Chalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 13/13.3/Images/Chalk.png -------------------------------------------------------------------------------- /Chapter 13/13.3/Images/Chalk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 13/13.3/Images/Chalk@2x.png -------------------------------------------------------------------------------- /Chapter 13/13.3/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 13/13.3/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 13/13.3/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 13/13.3/Images/Default.png -------------------------------------------------------------------------------- /Chapter 13/13.3/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 13/13.3/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 13/13.4/Chalkboard.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 13/13.4/Images/Chalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 13/13.4/Images/Chalk.png -------------------------------------------------------------------------------- /Chapter 13/13.4/Images/Chalk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 13/13.4/Images/Chalk@2x.png -------------------------------------------------------------------------------- /Chapter 13/13.4/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 13/13.4/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 13/13.4/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 13/13.4/Images/Default.png -------------------------------------------------------------------------------- /Chapter 13/13.4/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 13/13.4/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 14/14.1/CarouselTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 14/14.1/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.1/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 14/14.1/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.1/Images/Default.png -------------------------------------------------------------------------------- /Chapter 14/14.1/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.1/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 14/14.2/CarouselTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 14/14.2/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.2/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 14/14.2/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.2/Images/Default.png -------------------------------------------------------------------------------- /Chapter 14/14.2/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.2/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 14/14.3/CarouselTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 14/14.3/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.3/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 14/14.3/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.3/Images/Default.png -------------------------------------------------------------------------------- /Chapter 14/14.3/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.3/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 14/14.4/CarouselTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 14/14.4/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.4/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 14/14.4/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.4/Images/Default.png -------------------------------------------------------------------------------- /Chapter 14/14.4/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.4/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 14/14.5/CarouselTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 14/14.5/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.5/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 14/14.5/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.5/Images/Default.png -------------------------------------------------------------------------------- /Chapter 14/14.5/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.5/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 14/14.6/Benchmark.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 14/14.6/Benchmark.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 14/14.6/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.6/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 14/14.6/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.6/Images/Default.png -------------------------------------------------------------------------------- /Chapter 14/14.6/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.6/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 14/14.7/HybridImage.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 14/14.7/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.7/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 14/14.7/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.7/Images/Default.png -------------------------------------------------------------------------------- /Chapter 14/14.7/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.7/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 14/14.7/Images/Snowman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.7/Images/Snowman.jpg -------------------------------------------------------------------------------- /Chapter 14/14.7/Images/SnowmanMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.7/Images/SnowmanMask.png -------------------------------------------------------------------------------- /Chapter 14/14.8/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.8/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 14/14.8/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.8/Images/Default.png -------------------------------------------------------------------------------- /Chapter 14/14.8/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.8/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 14/14.8/Images/Snowman.pvr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/14.8/Images/Snowman.pvr -------------------------------------------------------------------------------- /Chapter 14/14.8/PVRTCTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 14/14.8/PVRTCTest.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 14/Coast Photos/1024x768.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Coast Photos/1024x768.jpg -------------------------------------------------------------------------------- /Chapter 14/Coast Photos/1024x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Coast Photos/1024x768.png -------------------------------------------------------------------------------- /Chapter 14/Coast Photos/128x96.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Coast Photos/128x96.jpg -------------------------------------------------------------------------------- /Chapter 14/Coast Photos/128x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Coast Photos/128x96.png -------------------------------------------------------------------------------- /Chapter 14/Coast Photos/2048x1536.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Coast Photos/2048x1536.jpg -------------------------------------------------------------------------------- /Chapter 14/Coast Photos/2048x1536.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Coast Photos/2048x1536.png -------------------------------------------------------------------------------- /Chapter 14/Coast Photos/256x192.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Coast Photos/256x192.jpg -------------------------------------------------------------------------------- /Chapter 14/Coast Photos/256x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Coast Photos/256x192.png -------------------------------------------------------------------------------- /Chapter 14/Coast Photos/32x24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Coast Photos/32x24.jpg -------------------------------------------------------------------------------- /Chapter 14/Coast Photos/32x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Coast Photos/32x24.png -------------------------------------------------------------------------------- /Chapter 14/Coast Photos/512x384.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Coast Photos/512x384.jpg -------------------------------------------------------------------------------- /Chapter 14/Coast Photos/512x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Coast Photos/512x384.png -------------------------------------------------------------------------------- /Chapter 14/Coast Photos/64x48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Coast Photos/64x48.jpg -------------------------------------------------------------------------------- /Chapter 14/Coast Photos/64x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Coast Photos/64x48.png -------------------------------------------------------------------------------- /Chapter 14/Gradient Images/1024x768.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Gradient Images/1024x768.jpg -------------------------------------------------------------------------------- /Chapter 14/Gradient Images/1024x768.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Gradient Images/1024x768.png -------------------------------------------------------------------------------- /Chapter 14/Gradient Images/128x96.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Gradient Images/128x96.jpg -------------------------------------------------------------------------------- /Chapter 14/Gradient Images/128x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Gradient Images/128x96.png -------------------------------------------------------------------------------- /Chapter 14/Gradient Images/2048x1536.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Gradient Images/2048x1536.jpg -------------------------------------------------------------------------------- /Chapter 14/Gradient Images/2048x1536.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Gradient Images/2048x1536.png -------------------------------------------------------------------------------- /Chapter 14/Gradient Images/256x192.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Gradient Images/256x192.jpg -------------------------------------------------------------------------------- /Chapter 14/Gradient Images/256x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Gradient Images/256x192.png -------------------------------------------------------------------------------- /Chapter 14/Gradient Images/32x24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Gradient Images/32x24.jpg -------------------------------------------------------------------------------- /Chapter 14/Gradient Images/32x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Gradient Images/32x24.png -------------------------------------------------------------------------------- /Chapter 14/Gradient Images/512x384.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Gradient Images/512x384.jpg -------------------------------------------------------------------------------- /Chapter 14/Gradient Images/512x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Gradient Images/512x384.png -------------------------------------------------------------------------------- /Chapter 14/Gradient Images/64x48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Gradient Images/64x48.jpg -------------------------------------------------------------------------------- /Chapter 14/Gradient Images/64x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Gradient Images/64x48.png -------------------------------------------------------------------------------- /Chapter 14/Vacation Photos/IMG_0150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Vacation Photos/IMG_0150.png -------------------------------------------------------------------------------- /Chapter 14/Vacation Photos/IMG_0154.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Vacation Photos/IMG_0154.png -------------------------------------------------------------------------------- /Chapter 14/Vacation Photos/IMG_0163.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Vacation Photos/IMG_0163.png -------------------------------------------------------------------------------- /Chapter 14/Vacation Photos/IMG_0169.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Vacation Photos/IMG_0169.png -------------------------------------------------------------------------------- /Chapter 14/Vacation Photos/IMG_0170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Vacation Photos/IMG_0170.png -------------------------------------------------------------------------------- /Chapter 14/Vacation Photos/IMG_0173.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Vacation Photos/IMG_0173.png -------------------------------------------------------------------------------- /Chapter 14/Vacation Photos/IMG_0174.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Vacation Photos/IMG_0174.png -------------------------------------------------------------------------------- /Chapter 14/Vacation Photos/IMG_0180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Vacation Photos/IMG_0180.png -------------------------------------------------------------------------------- /Chapter 14/Vacation Photos/IMG_0181.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Vacation Photos/IMG_0181.png -------------------------------------------------------------------------------- /Chapter 14/Vacation Photos/IMG_0184.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Vacation Photos/IMG_0184.png -------------------------------------------------------------------------------- /Chapter 14/Vacation Photos/IMG_0197.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 14/Vacation Photos/IMG_0197.png -------------------------------------------------------------------------------- /Chapter 15/15.1/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 15/15.1/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 15/15.1/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 15/15.1/Images/Default.png -------------------------------------------------------------------------------- /Chapter 15/15.1/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 15/15.1/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 15/15.2/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 15/15.2/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 15/15.2/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 15/15.2/Images/Default.png -------------------------------------------------------------------------------- /Chapter 15/15.2/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 15/15.2/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 15/15.2/Images/Rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 15/15.2/Images/Rounded.png -------------------------------------------------------------------------------- /Chapter 15/15.2/Images/Rounded@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 15/15.2/Images/Rounded@2x.png -------------------------------------------------------------------------------- /Chapter 15/15.3/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 15/15.3/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 15/15.3/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 15/15.3/Images/Default.png -------------------------------------------------------------------------------- /Chapter 15/15.3/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 15/15.3/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 15/15.3/Parallax.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 15/15.3/Parallax.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 15/15.4/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 15/15.4/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 15/15.4/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 15/15.4/Images/Default.png -------------------------------------------------------------------------------- /Chapter 15/15.4/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 15/15.4/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 15/15.4/Parallax.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 15/15.4/Parallax.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /Chapter 15/15.5/Images/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 15/15.5/Images/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter 15/15.5/Images/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 15/15.5/Images/Default.png -------------------------------------------------------------------------------- /Chapter 15/15.5/Images/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos543/iOS-Core-Animation-Advanced-Techniques-Resource/ab252b173ac6e0736023336572be9e59691767bd/Chapter 15/15.5/Images/Default@2x.png -------------------------------------------------------------------------------- /Chapter 15/15.5/Parallax.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Chapter 15/15.5/Parallax.xcodeproj/xcuserdata/nick.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | --------------------------------------------------------------------------------