├── CCAnimation.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── ZXX.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── ZXX.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── CCAnimation ├── AppDelegate │ ├── AppDelegate.h │ └── AppDelegate.m ├── Class │ ├── Base │ │ ├── BaseViewController.h │ │ └── BaseViewController.m │ ├── Basic │ │ ├── BasicViewController.h │ │ └── BasicViewController.m │ ├── Combination │ │ ├── CombinationViewController.h │ │ └── CombinationViewController.m │ ├── Group │ │ ├── GroupViewController.h │ │ └── GroupViewController.m │ ├── KeyFrames │ │ ├── KeyViewController.h │ │ └── KeyViewController.m │ ├── MainViewController.h │ ├── MainViewController.m │ └── Transition │ │ ├── TransitionViewController.h │ │ └── TransitionViewController.m ├── Info.plist ├── LaunchScreen.storyboard ├── Resource │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon40@2x.png │ │ │ ├── icon60@2x-1.png │ │ │ ├── icon60@2x.png │ │ │ └── icon60@3x.png │ │ ├── Contents.json │ │ ├── Image │ │ │ ├── Contents.json │ │ │ ├── Like-Blue.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Like-Blue@2x.png │ │ │ ├── Like.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Like@2x.png │ │ │ ├── Sparkle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Sparkle.png │ │ │ ├── chooser-button-input-highlighted.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── chooser-button-input-highlighted@2x.png │ │ │ │ └── chooser-button-input-highlighted@3x.png │ │ │ ├── chooser-button-input.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chooser-button-input@2x.png │ │ │ ├── chooser-button-tab-highlighted.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chooser-button-tab-highlighted@2x.png │ │ │ ├── chooser-button-tab.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chooser-button-tab@2x.png │ │ │ ├── chooser-moment-button-highlighted.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chooser-moment-button-highlighted@2x.png │ │ │ ├── chooser-moment-button.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chooser-moment-button@2x.png │ │ │ ├── chooser-moment-icon-camera-highlighted.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chooser-moment-icon-camera-highlighted@2x.png │ │ │ ├── chooser-moment-icon-camera.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chooser-moment-icon-camera@2x.png │ │ │ ├── chooser-moment-icon-music-highlighted.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chooser-moment-icon-music-highlighted@2x.png │ │ │ ├── chooser-moment-icon-music.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chooser-moment-icon-music@2x.png │ │ │ ├── chooser-moment-icon-place-highlighted.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chooser-moment-icon-place-highlighted@2x.png │ │ │ ├── chooser-moment-icon-place.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chooser-moment-icon-place@2x.png │ │ │ ├── chooser-moment-icon-sleep-highlighted.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chooser-moment-icon-sleep-highlighted@2x.png │ │ │ ├── chooser-moment-icon-sleep.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chooser-moment-icon-sleep@2x.png │ │ │ ├── chooser-moment-icon-thought-highlighted.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chooser-moment-icon-thought-highlighted@2x.png │ │ │ └── chooser-moment-icon-thought.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chooser-moment-icon-thought@2x.png │ │ └── LaunchImage.launchimage │ │ │ ├── 375@2x.jpg │ │ │ ├── 414@3x.jpg │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Define.h │ └── PrefixHeader.pch ├── ShowImages │ ├── all.gif │ ├── basic.gif │ ├── combination.gif │ ├── group.gif │ ├── key.gif │ └── transition.gif ├── Utils │ ├── DCPathButton │ │ ├── DCPathButton.h │ │ ├── DCPathButton.m │ │ ├── DCPathCenterButton.h │ │ ├── DCPathCenterButton.m │ │ ├── DCPathItemButton.h │ │ └── DCPathItemButton.m │ ├── DWBubbleMenuButton │ │ ├── DWBubbleMenuButton.h │ │ └── DWBubbleMenuButton.m │ ├── MCFireworksButton │ │ ├── MCFireworksButton.h │ │ ├── MCFireworksButton.m │ │ ├── MCFireworksView.h │ │ └── MCFireworksView.m │ ├── ProgressView │ │ ├── LJInstrumentView.h │ │ ├── LJInstrumentView.m │ │ ├── UICountingLabel.h │ │ └── UICountingLabel.m │ ├── Sounds │ │ ├── bloom.caf │ │ ├── fold.caf │ │ └── selected.caf │ ├── UIColor+Hex.h │ ├── UIColor+Hex.m │ ├── UINavigationController+FDFullscreenPopGesture.h │ ├── UINavigationController+FDFullscreenPopGesture.m │ ├── UIView+CCCategory.h │ └── UIView+CCCategory.m └── main.m └── README.md /CCAnimation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CCAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CCAnimation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CCAnimation.xcodeproj/project.xcworkspace/xcuserdata/ZXX.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation.xcodeproj/project.xcworkspace/xcuserdata/ZXX.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CCAnimation.xcodeproj/xcuserdata/ZXX.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation.xcodeproj/xcuserdata/ZXX.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /CCAnimation.xcodeproj/xcuserdata/ZXX.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation.xcodeproj/xcuserdata/ZXX.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CCAnimation/AppDelegate/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/AppDelegate/AppDelegate.h -------------------------------------------------------------------------------- /CCAnimation/AppDelegate/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/AppDelegate/AppDelegate.m -------------------------------------------------------------------------------- /CCAnimation/Class/Base/BaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Class/Base/BaseViewController.h -------------------------------------------------------------------------------- /CCAnimation/Class/Base/BaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Class/Base/BaseViewController.m -------------------------------------------------------------------------------- /CCAnimation/Class/Basic/BasicViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Class/Basic/BasicViewController.h -------------------------------------------------------------------------------- /CCAnimation/Class/Basic/BasicViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Class/Basic/BasicViewController.m -------------------------------------------------------------------------------- /CCAnimation/Class/Combination/CombinationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Class/Combination/CombinationViewController.h -------------------------------------------------------------------------------- /CCAnimation/Class/Combination/CombinationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Class/Combination/CombinationViewController.m -------------------------------------------------------------------------------- /CCAnimation/Class/Group/GroupViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Class/Group/GroupViewController.h -------------------------------------------------------------------------------- /CCAnimation/Class/Group/GroupViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Class/Group/GroupViewController.m -------------------------------------------------------------------------------- /CCAnimation/Class/KeyFrames/KeyViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Class/KeyFrames/KeyViewController.h -------------------------------------------------------------------------------- /CCAnimation/Class/KeyFrames/KeyViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Class/KeyFrames/KeyViewController.m -------------------------------------------------------------------------------- /CCAnimation/Class/MainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Class/MainViewController.h -------------------------------------------------------------------------------- /CCAnimation/Class/MainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Class/MainViewController.m -------------------------------------------------------------------------------- /CCAnimation/Class/Transition/TransitionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Class/Transition/TransitionViewController.h -------------------------------------------------------------------------------- /CCAnimation/Class/Transition/TransitionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Class/Transition/TransitionViewController.m -------------------------------------------------------------------------------- /CCAnimation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Info.plist -------------------------------------------------------------------------------- /CCAnimation/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/AppIcon.appiconset/icon40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/AppIcon.appiconset/icon40@2x.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/AppIcon.appiconset/icon60@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/AppIcon.appiconset/icon60@2x-1.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/AppIcon.appiconset/icon60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/AppIcon.appiconset/icon60@2x.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/AppIcon.appiconset/icon60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/AppIcon.appiconset/icon60@3x.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/Contents.json -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/Like-Blue.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/Like-Blue.imageset/Contents.json -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/Like-Blue.imageset/Like-Blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/Like-Blue.imageset/Like-Blue@2x.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/Like.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/Like.imageset/Contents.json -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/Like.imageset/Like@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/Like.imageset/Like@2x.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/Sparkle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/Sparkle.imageset/Contents.json -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/Sparkle.imageset/Sparkle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/Sparkle.imageset/Sparkle.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-button-input-highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-button-input-highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-button-input-highlighted.imageset/chooser-button-input-highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-button-input-highlighted.imageset/chooser-button-input-highlighted@2x.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-button-input-highlighted.imageset/chooser-button-input-highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-button-input-highlighted.imageset/chooser-button-input-highlighted@3x.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-button-input.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-button-input.imageset/Contents.json -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-button-input.imageset/chooser-button-input@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-button-input.imageset/chooser-button-input@2x.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-button-tab-highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-button-tab-highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-button-tab-highlighted.imageset/chooser-button-tab-highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-button-tab-highlighted.imageset/chooser-button-tab-highlighted@2x.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-button-tab.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-button-tab.imageset/Contents.json -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-button-tab.imageset/chooser-button-tab@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-button-tab.imageset/chooser-button-tab@2x.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-button-highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-button-highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-button-highlighted.imageset/chooser-moment-button-highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-button-highlighted.imageset/chooser-moment-button-highlighted@2x.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-button.imageset/Contents.json -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-button.imageset/chooser-moment-button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-button.imageset/chooser-moment-button@2x.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-camera-highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-camera-highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-camera-highlighted.imageset/chooser-moment-icon-camera-highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-camera-highlighted.imageset/chooser-moment-icon-camera-highlighted@2x.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-camera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-camera.imageset/Contents.json -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-camera.imageset/chooser-moment-icon-camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-camera.imageset/chooser-moment-icon-camera@2x.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-music-highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-music-highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-music-highlighted.imageset/chooser-moment-icon-music-highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-music-highlighted.imageset/chooser-moment-icon-music-highlighted@2x.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-music.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-music.imageset/Contents.json -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-music.imageset/chooser-moment-icon-music@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-music.imageset/chooser-moment-icon-music@2x.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-place-highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-place-highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-place-highlighted.imageset/chooser-moment-icon-place-highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-place-highlighted.imageset/chooser-moment-icon-place-highlighted@2x.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-place.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-place.imageset/Contents.json -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-place.imageset/chooser-moment-icon-place@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-place.imageset/chooser-moment-icon-place@2x.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-sleep-highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-sleep-highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-sleep-highlighted.imageset/chooser-moment-icon-sleep-highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-sleep-highlighted.imageset/chooser-moment-icon-sleep-highlighted@2x.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-sleep.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-sleep.imageset/Contents.json -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-sleep.imageset/chooser-moment-icon-sleep@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-sleep.imageset/chooser-moment-icon-sleep@2x.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-thought-highlighted.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-thought-highlighted.imageset/Contents.json -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-thought-highlighted.imageset/chooser-moment-icon-thought-highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-thought-highlighted.imageset/chooser-moment-icon-thought-highlighted@2x.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-thought.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-thought.imageset/Contents.json -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-thought.imageset/chooser-moment-icon-thought@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/Image/chooser-moment-icon-thought.imageset/chooser-moment-icon-thought@2x.png -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/LaunchImage.launchimage/375@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/LaunchImage.launchimage/375@2x.jpg -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/LaunchImage.launchimage/414@3x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/LaunchImage.launchimage/414@3x.jpg -------------------------------------------------------------------------------- /CCAnimation/Resource/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /CCAnimation/Resource/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CCAnimation/Resource/Define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/Define.h -------------------------------------------------------------------------------- /CCAnimation/Resource/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Resource/PrefixHeader.pch -------------------------------------------------------------------------------- /CCAnimation/ShowImages/all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/ShowImages/all.gif -------------------------------------------------------------------------------- /CCAnimation/ShowImages/basic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/ShowImages/basic.gif -------------------------------------------------------------------------------- /CCAnimation/ShowImages/combination.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/ShowImages/combination.gif -------------------------------------------------------------------------------- /CCAnimation/ShowImages/group.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/ShowImages/group.gif -------------------------------------------------------------------------------- /CCAnimation/ShowImages/key.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/ShowImages/key.gif -------------------------------------------------------------------------------- /CCAnimation/ShowImages/transition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/ShowImages/transition.gif -------------------------------------------------------------------------------- /CCAnimation/Utils/DCPathButton/DCPathButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/DCPathButton/DCPathButton.h -------------------------------------------------------------------------------- /CCAnimation/Utils/DCPathButton/DCPathButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/DCPathButton/DCPathButton.m -------------------------------------------------------------------------------- /CCAnimation/Utils/DCPathButton/DCPathCenterButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/DCPathButton/DCPathCenterButton.h -------------------------------------------------------------------------------- /CCAnimation/Utils/DCPathButton/DCPathCenterButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/DCPathButton/DCPathCenterButton.m -------------------------------------------------------------------------------- /CCAnimation/Utils/DCPathButton/DCPathItemButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/DCPathButton/DCPathItemButton.h -------------------------------------------------------------------------------- /CCAnimation/Utils/DCPathButton/DCPathItemButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/DCPathButton/DCPathItemButton.m -------------------------------------------------------------------------------- /CCAnimation/Utils/DWBubbleMenuButton/DWBubbleMenuButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/DWBubbleMenuButton/DWBubbleMenuButton.h -------------------------------------------------------------------------------- /CCAnimation/Utils/DWBubbleMenuButton/DWBubbleMenuButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/DWBubbleMenuButton/DWBubbleMenuButton.m -------------------------------------------------------------------------------- /CCAnimation/Utils/MCFireworksButton/MCFireworksButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/MCFireworksButton/MCFireworksButton.h -------------------------------------------------------------------------------- /CCAnimation/Utils/MCFireworksButton/MCFireworksButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/MCFireworksButton/MCFireworksButton.m -------------------------------------------------------------------------------- /CCAnimation/Utils/MCFireworksButton/MCFireworksView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/MCFireworksButton/MCFireworksView.h -------------------------------------------------------------------------------- /CCAnimation/Utils/MCFireworksButton/MCFireworksView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/MCFireworksButton/MCFireworksView.m -------------------------------------------------------------------------------- /CCAnimation/Utils/ProgressView/LJInstrumentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/ProgressView/LJInstrumentView.h -------------------------------------------------------------------------------- /CCAnimation/Utils/ProgressView/LJInstrumentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/ProgressView/LJInstrumentView.m -------------------------------------------------------------------------------- /CCAnimation/Utils/ProgressView/UICountingLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/ProgressView/UICountingLabel.h -------------------------------------------------------------------------------- /CCAnimation/Utils/ProgressView/UICountingLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/ProgressView/UICountingLabel.m -------------------------------------------------------------------------------- /CCAnimation/Utils/Sounds/bloom.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/Sounds/bloom.caf -------------------------------------------------------------------------------- /CCAnimation/Utils/Sounds/fold.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/Sounds/fold.caf -------------------------------------------------------------------------------- /CCAnimation/Utils/Sounds/selected.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/Sounds/selected.caf -------------------------------------------------------------------------------- /CCAnimation/Utils/UIColor+Hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/UIColor+Hex.h -------------------------------------------------------------------------------- /CCAnimation/Utils/UIColor+Hex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/UIColor+Hex.m -------------------------------------------------------------------------------- /CCAnimation/Utils/UINavigationController+FDFullscreenPopGesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/UINavigationController+FDFullscreenPopGesture.h -------------------------------------------------------------------------------- /CCAnimation/Utils/UINavigationController+FDFullscreenPopGesture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/UINavigationController+FDFullscreenPopGesture.m -------------------------------------------------------------------------------- /CCAnimation/Utils/UIView+CCCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/UIView+CCCategory.h -------------------------------------------------------------------------------- /CCAnimation/Utils/UIView+CCCategory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/Utils/UIView+CCCategory.m -------------------------------------------------------------------------------- /CCAnimation/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/CCAnimation/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCBrother/CCAnimation/HEAD/README.md --------------------------------------------------------------------------------