├── Arc.sketch ├── ArcPath.svg ├── CRNumberFaded.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── bear.xcuserdatad │ └── xcschemes │ ├── CRNumberFaded.xcscheme │ └── xcschememanagement.plist ├── CRNumberFaded.xcworkspace └── contents.xcworkspacedata ├── CRNumberFaded ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── fireIcon.imageset │ │ ├── Contents.json │ │ └── 火.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CRNumberFaded │ ├── CRFadedView.h │ ├── CRFadedView.m │ ├── CRNumberFaded.h │ └── CRNumberFaded.m ├── CRSlider │ ├── CRSlider.h │ ├── CRSlider.m │ ├── CRSliderIndicator.h │ ├── CRSliderIndicator.m │ ├── CRSliderIndicatorChip.h │ └── CRSliderIndicatorChip.m ├── Info.plist ├── PerformanceVC.h ├── PerformanceVC.m ├── PrefixHeader.pch ├── ViewController.h ├── ViewController.m └── main.m ├── CRNumberFadedTests ├── CRNumberFadedTests.m └── Info.plist ├── CRNumberFadedUITests ├── CRNumberFadedUITests.m └── Info.plist ├── Podfile ├── Pods ├── BearSkill │ ├── LICENSE │ ├── Pod │ │ └── Classes │ │ │ ├── AttributeString │ │ │ ├── NSMutableAttributedString+BearSet.h │ │ │ └── NSMutableAttributedString+BearSet.m │ │ │ ├── Constants │ │ │ ├── ApplicationOpenURLManager.h │ │ │ ├── ApplicationOpenURLManager.m │ │ │ ├── BearConstants.h │ │ │ └── BearConstants.m │ │ │ ├── Layout │ │ │ ├── UITableView+BearStoreCellHeight.h │ │ │ ├── UITableView+BearStoreCellHeight.m │ │ │ ├── UIView+BearSet.h │ │ │ └── UIView+BearSet.m │ │ │ └── UI&Extend │ │ │ ├── BearAlertView │ │ │ ├── BearAlertBtnsView.h │ │ │ ├── BearAlertBtnsView.m │ │ │ ├── BearAlertContentView.h │ │ │ ├── BearAlertContentView.m │ │ │ ├── BearAlertView.h │ │ │ └── BearAlertView.m │ │ │ ├── BearCutOutView.h │ │ │ ├── BearCutOutView.m │ │ │ ├── UILabel+BearSet.h │ │ │ ├── UILabel+BearSet.m │ │ │ ├── UITextField+BearLimitLength.h │ │ │ └── UITextField+BearLimitLength.m │ └── README.md ├── Headers │ ├── Private │ │ └── BearSkill │ │ │ ├── ApplicationOpenURLManager.h │ │ │ ├── BearAlertBtnsView.h │ │ │ ├── BearAlertContentView.h │ │ │ ├── BearAlertView.h │ │ │ ├── BearConstants.h │ │ │ ├── BearCutOutView.h │ │ │ ├── NSMutableAttributedString+BearSet.h │ │ │ ├── UILabel+BearSet.h │ │ │ ├── UITableView+BearStoreCellHeight.h │ │ │ ├── UITextField+BearLimitLength.h │ │ │ └── UIView+BearSet.h │ └── Public │ │ └── BearSkill │ │ ├── ApplicationOpenURLManager.h │ │ ├── BearAlertBtnsView.h │ │ ├── BearAlertContentView.h │ │ ├── BearAlertView.h │ │ ├── BearConstants.h │ │ ├── BearCutOutView.h │ │ ├── NSMutableAttributedString+BearSet.h │ │ ├── UILabel+BearSet.h │ │ ├── UITableView+BearStoreCellHeight.h │ │ ├── UITextField+BearLimitLength.h │ │ └── UIView+BearSet.h ├── Local Podspecs │ └── BearSkill.podspec.json ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── bear.xcuserdatad │ │ └── xcschemes │ │ ├── BearSkill.xcscheme │ │ ├── Pods-CRNumberFaded.xcscheme │ │ ├── Pods-CRNumberFadedTests.xcscheme │ │ ├── Pods-CRNumberFadedUITests.xcscheme │ │ └── xcschememanagement.plist └── Target Support Files │ ├── BearSkill │ ├── BearSkill-dummy.m │ ├── BearSkill-prefix.pch │ └── BearSkill.xcconfig │ ├── Pods-CRNumberFaded │ ├── Pods-CRNumberFaded-acknowledgements.markdown │ ├── Pods-CRNumberFaded-acknowledgements.plist │ ├── Pods-CRNumberFaded-dummy.m │ ├── Pods-CRNumberFaded-frameworks.sh │ ├── Pods-CRNumberFaded-resources.sh │ ├── Pods-CRNumberFaded.debug.xcconfig │ └── Pods-CRNumberFaded.release.xcconfig │ ├── Pods-CRNumberFadedTests │ ├── Pods-CRNumberFadedTests-acknowledgements.markdown │ ├── Pods-CRNumberFadedTests-acknowledgements.plist │ ├── Pods-CRNumberFadedTests-dummy.m │ ├── Pods-CRNumberFadedTests-frameworks.sh │ ├── Pods-CRNumberFadedTests-resources.sh │ ├── Pods-CRNumberFadedTests.debug.xcconfig │ └── Pods-CRNumberFadedTests.release.xcconfig │ └── Pods-CRNumberFadedUITests │ ├── Pods-CRNumberFadedUITests-acknowledgements.markdown │ ├── Pods-CRNumberFadedUITests-acknowledgements.plist │ ├── Pods-CRNumberFadedUITests-dummy.m │ ├── Pods-CRNumberFadedUITests-frameworks.sh │ ├── Pods-CRNumberFadedUITests-resources.sh │ ├── Pods-CRNumberFadedUITests.debug.xcconfig │ └── Pods-CRNumberFadedUITests.release.xcconfig ├── README.md └── Resource ├── CRNumberFaded.gif └── CRNumberFadedOrigin.gif /Arc.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Arc.sketch -------------------------------------------------------------------------------- /ArcPath.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/ArcPath.svg -------------------------------------------------------------------------------- /CRNumberFaded.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CRNumberFaded.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CRNumberFaded.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/CRNumberFaded.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/CRNumberFaded.xcscheme -------------------------------------------------------------------------------- /CRNumberFaded.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CRNumberFaded.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CRNumberFaded/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/AppDelegate.h -------------------------------------------------------------------------------- /CRNumberFaded/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/AppDelegate.m -------------------------------------------------------------------------------- /CRNumberFaded/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CRNumberFaded/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CRNumberFaded/Assets.xcassets/fireIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/Assets.xcassets/fireIcon.imageset/Contents.json -------------------------------------------------------------------------------- /CRNumberFaded/Assets.xcassets/fireIcon.imageset/火.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/Assets.xcassets/fireIcon.imageset/火.png -------------------------------------------------------------------------------- /CRNumberFaded/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CRNumberFaded/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CRNumberFaded/CRNumberFaded/CRFadedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/CRNumberFaded/CRFadedView.h -------------------------------------------------------------------------------- /CRNumberFaded/CRNumberFaded/CRFadedView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/CRNumberFaded/CRFadedView.m -------------------------------------------------------------------------------- /CRNumberFaded/CRNumberFaded/CRNumberFaded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/CRNumberFaded/CRNumberFaded.h -------------------------------------------------------------------------------- /CRNumberFaded/CRNumberFaded/CRNumberFaded.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/CRNumberFaded/CRNumberFaded.m -------------------------------------------------------------------------------- /CRNumberFaded/CRSlider/CRSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/CRSlider/CRSlider.h -------------------------------------------------------------------------------- /CRNumberFaded/CRSlider/CRSlider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/CRSlider/CRSlider.m -------------------------------------------------------------------------------- /CRNumberFaded/CRSlider/CRSliderIndicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/CRSlider/CRSliderIndicator.h -------------------------------------------------------------------------------- /CRNumberFaded/CRSlider/CRSliderIndicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/CRSlider/CRSliderIndicator.m -------------------------------------------------------------------------------- /CRNumberFaded/CRSlider/CRSliderIndicatorChip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/CRSlider/CRSliderIndicatorChip.h -------------------------------------------------------------------------------- /CRNumberFaded/CRSlider/CRSliderIndicatorChip.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/CRSlider/CRSliderIndicatorChip.m -------------------------------------------------------------------------------- /CRNumberFaded/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/Info.plist -------------------------------------------------------------------------------- /CRNumberFaded/PerformanceVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/PerformanceVC.h -------------------------------------------------------------------------------- /CRNumberFaded/PerformanceVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/PerformanceVC.m -------------------------------------------------------------------------------- /CRNumberFaded/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/PrefixHeader.pch -------------------------------------------------------------------------------- /CRNumberFaded/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/ViewController.h -------------------------------------------------------------------------------- /CRNumberFaded/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/ViewController.m -------------------------------------------------------------------------------- /CRNumberFaded/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFaded/main.m -------------------------------------------------------------------------------- /CRNumberFadedTests/CRNumberFadedTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFadedTests/CRNumberFadedTests.m -------------------------------------------------------------------------------- /CRNumberFadedTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFadedTests/Info.plist -------------------------------------------------------------------------------- /CRNumberFadedUITests/CRNumberFadedUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFadedUITests/CRNumberFadedUITests.m -------------------------------------------------------------------------------- /CRNumberFadedUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/CRNumberFadedUITests/Info.plist -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Podfile -------------------------------------------------------------------------------- /Pods/BearSkill/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/LICENSE -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Classes/AttributeString/NSMutableAttributedString+BearSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/Pod/Classes/AttributeString/NSMutableAttributedString+BearSet.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Classes/AttributeString/NSMutableAttributedString+BearSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/Pod/Classes/AttributeString/NSMutableAttributedString+BearSet.m -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Classes/Constants/ApplicationOpenURLManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/Pod/Classes/Constants/ApplicationOpenURLManager.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Classes/Constants/ApplicationOpenURLManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/Pod/Classes/Constants/ApplicationOpenURLManager.m -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Classes/Constants/BearConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/Pod/Classes/Constants/BearConstants.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Classes/Constants/BearConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/Pod/Classes/Constants/BearConstants.m -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Classes/Layout/UITableView+BearStoreCellHeight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/Pod/Classes/Layout/UITableView+BearStoreCellHeight.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Classes/Layout/UITableView+BearStoreCellHeight.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/Pod/Classes/Layout/UITableView+BearStoreCellHeight.m -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Classes/Layout/UIView+BearSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/Pod/Classes/Layout/UIView+BearSet.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Classes/Layout/UIView+BearSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/Pod/Classes/Layout/UIView+BearSet.m -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Classes/UI&Extend/BearAlertView/BearAlertBtnsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/Pod/Classes/UI&Extend/BearAlertView/BearAlertBtnsView.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Classes/UI&Extend/BearAlertView/BearAlertBtnsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/Pod/Classes/UI&Extend/BearAlertView/BearAlertBtnsView.m -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Classes/UI&Extend/BearAlertView/BearAlertContentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/Pod/Classes/UI&Extend/BearAlertView/BearAlertContentView.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Classes/UI&Extend/BearAlertView/BearAlertContentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/Pod/Classes/UI&Extend/BearAlertView/BearAlertContentView.m -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Classes/UI&Extend/BearAlertView/BearAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/Pod/Classes/UI&Extend/BearAlertView/BearAlertView.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Classes/UI&Extend/BearAlertView/BearAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/Pod/Classes/UI&Extend/BearAlertView/BearAlertView.m -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Classes/UI&Extend/BearCutOutView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/Pod/Classes/UI&Extend/BearCutOutView.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Classes/UI&Extend/BearCutOutView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/Pod/Classes/UI&Extend/BearCutOutView.m -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Classes/UI&Extend/UILabel+BearSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/Pod/Classes/UI&Extend/UILabel+BearSet.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Classes/UI&Extend/UILabel+BearSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/Pod/Classes/UI&Extend/UILabel+BearSet.m -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Classes/UI&Extend/UITextField+BearLimitLength.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/Pod/Classes/UI&Extend/UITextField+BearLimitLength.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Classes/UI&Extend/UITextField+BearLimitLength.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/Pod/Classes/UI&Extend/UITextField+BearLimitLength.m -------------------------------------------------------------------------------- /Pods/BearSkill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/BearSkill/README.md -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/ApplicationOpenURLManager.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Classes/Constants/ApplicationOpenURLManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/BearAlertBtnsView.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Classes/UI&Extend/BearAlertView/BearAlertBtnsView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/BearAlertContentView.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Classes/UI&Extend/BearAlertView/BearAlertContentView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/BearAlertView.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Classes/UI&Extend/BearAlertView/BearAlertView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/BearConstants.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Classes/Constants/BearConstants.h -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/BearCutOutView.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Classes/UI&Extend/BearCutOutView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/NSMutableAttributedString+BearSet.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Classes/AttributeString/NSMutableAttributedString+BearSet.h -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/UILabel+BearSet.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Classes/UI&Extend/UILabel+BearSet.h -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/UITableView+BearStoreCellHeight.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Classes/Layout/UITableView+BearStoreCellHeight.h -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/UITextField+BearLimitLength.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Classes/UI&Extend/UITextField+BearLimitLength.h -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/UIView+BearSet.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Classes/Layout/UIView+BearSet.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/ApplicationOpenURLManager.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Classes/Constants/ApplicationOpenURLManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/BearAlertBtnsView.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Classes/UI&Extend/BearAlertView/BearAlertBtnsView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/BearAlertContentView.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Classes/UI&Extend/BearAlertView/BearAlertContentView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/BearAlertView.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Classes/UI&Extend/BearAlertView/BearAlertView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/BearConstants.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Classes/Constants/BearConstants.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/BearCutOutView.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Classes/UI&Extend/BearCutOutView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/NSMutableAttributedString+BearSet.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Classes/AttributeString/NSMutableAttributedString+BearSet.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/UILabel+BearSet.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Classes/UI&Extend/UILabel+BearSet.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/UITableView+BearStoreCellHeight.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Classes/Layout/UITableView+BearStoreCellHeight.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/UITextField+BearLimitLength.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Classes/UI&Extend/UITextField+BearLimitLength.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/UIView+BearSet.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Classes/Layout/UIView+BearSet.h -------------------------------------------------------------------------------- /Pods/Local Podspecs/BearSkill.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Local Podspecs/BearSkill.podspec.json -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/BearSkill.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Pods.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/BearSkill.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/Pods-CRNumberFaded.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Pods.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/Pods-CRNumberFaded.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/Pods-CRNumberFadedTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Pods.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/Pods-CRNumberFadedTests.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/Pods-CRNumberFadedUITests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Pods.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/Pods-CRNumberFadedUITests.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Pods.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/BearSkill/BearSkill-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/BearSkill/BearSkill-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/BearSkill/BearSkill-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/BearSkill/BearSkill-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/BearSkill/BearSkill.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/BearSkill/BearSkill.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRNumberFaded/Pods-CRNumberFaded-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/Pods-CRNumberFaded/Pods-CRNumberFaded-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRNumberFaded/Pods-CRNumberFaded-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/Pods-CRNumberFaded/Pods-CRNumberFaded-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRNumberFaded/Pods-CRNumberFaded-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/Pods-CRNumberFaded/Pods-CRNumberFaded-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRNumberFaded/Pods-CRNumberFaded-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/Pods-CRNumberFaded/Pods-CRNumberFaded-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRNumberFaded/Pods-CRNumberFaded-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/Pods-CRNumberFaded/Pods-CRNumberFaded-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRNumberFaded/Pods-CRNumberFaded.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/Pods-CRNumberFaded/Pods-CRNumberFaded.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRNumberFaded/Pods-CRNumberFaded.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/Pods-CRNumberFaded/Pods-CRNumberFaded.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRNumberFadedTests/Pods-CRNumberFadedTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/Pods-CRNumberFadedTests/Pods-CRNumberFadedTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRNumberFadedTests/Pods-CRNumberFadedTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/Pods-CRNumberFadedTests/Pods-CRNumberFadedTests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRNumberFadedTests/Pods-CRNumberFadedTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/Pods-CRNumberFadedTests/Pods-CRNumberFadedTests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRNumberFadedTests/Pods-CRNumberFadedTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/Pods-CRNumberFadedTests/Pods-CRNumberFadedTests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRNumberFadedTests/Pods-CRNumberFadedTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/Pods-CRNumberFadedTests/Pods-CRNumberFadedTests-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRNumberFadedTests/Pods-CRNumberFadedTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/Pods-CRNumberFadedTests/Pods-CRNumberFadedTests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRNumberFadedTests/Pods-CRNumberFadedTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/Pods-CRNumberFadedTests/Pods-CRNumberFadedTests.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRNumberFadedUITests/Pods-CRNumberFadedUITests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/Pods-CRNumberFadedUITests/Pods-CRNumberFadedUITests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRNumberFadedUITests/Pods-CRNumberFadedUITests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/Pods-CRNumberFadedUITests/Pods-CRNumberFadedUITests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRNumberFadedUITests/Pods-CRNumberFadedUITests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/Pods-CRNumberFadedUITests/Pods-CRNumberFadedUITests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRNumberFadedUITests/Pods-CRNumberFadedUITests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/Pods-CRNumberFadedUITests/Pods-CRNumberFadedUITests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRNumberFadedUITests/Pods-CRNumberFadedUITests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/Pods-CRNumberFadedUITests/Pods-CRNumberFadedUITests-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRNumberFadedUITests/Pods-CRNumberFadedUITests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/Pods-CRNumberFadedUITests/Pods-CRNumberFadedUITests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRNumberFadedUITests/Pods-CRNumberFadedUITests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Pods/Target Support Files/Pods-CRNumberFadedUITests/Pods-CRNumberFadedUITests.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/README.md -------------------------------------------------------------------------------- /Resource/CRNumberFaded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Resource/CRNumberFaded.gif -------------------------------------------------------------------------------- /Resource/CRNumberFadedOrigin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRNumberFadedAnimation/HEAD/Resource/CRNumberFadedOrigin.gif --------------------------------------------------------------------------------