├── CRIconView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── bear.xcuserdatad │ └── xcschemes │ ├── CRIconView.xcscheme │ └── xcschememanagement.plist ├── CRIconView.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── CRIconView.xcscmblueprint ├── CRIconView ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── CRIcon.imageset │ │ ├── Contents.json │ │ └── logonew透明底.png │ ├── Contents.json │ ├── homgBg.imageset │ │ ├── Contents.json │ │ └── f6f8fc3e198a21db591c54d18cb8a1402350c85b21588-ZUzi6B_fw658.jpeg │ └── hours.imageset │ │ ├── Contents.json │ │ └── hours@2x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CRMaskAnimationView.h ├── CRMaskAnimationView.m ├── CRMaskImageView.h ├── CRMaskImageView.m ├── CRShiningAnimationView.h ├── CRShiningAnimationView.m ├── ContourTestView.h ├── ContourTestView.m ├── Info.plist ├── PrefixHeader.pch ├── TestLayerView.h ├── TestLayerView.m ├── ViewController.h ├── ViewController.m └── main.m ├── Images ├── CRIcon.png ├── logonew.sketch ├── logonew渐变调整完成.sketch ├── logonew透明底.png └── logonew透明底.sketch ├── Podfile ├── Pods ├── BearSkill │ ├── LICENSE │ ├── Pod │ │ ├── AttributeString │ │ │ ├── NSMutableAttributedString+BearSet.h │ │ │ └── NSMutableAttributedString+BearSet.m │ │ ├── BearDefines │ │ │ └── BearDefines.h │ │ ├── Constants │ │ │ ├── ApplicationOpenURLManager.h │ │ │ ├── ApplicationOpenURLManager.m │ │ │ ├── BearConstants.h │ │ │ └── BearConstants.m │ │ ├── Layout │ │ │ ├── UITableView+BearStoreCellHeight.h │ │ │ ├── UITableView+BearStoreCellHeight.m │ │ │ ├── UIView+BearSet.h │ │ │ └── UIView+BearSet.m │ │ └── UIAndExtend │ │ │ ├── BearAlertView │ │ │ ├── BearAlertBtnsView.h │ │ │ ├── BearAlertBtnsView.m │ │ │ ├── BearAlertContentView.h │ │ │ ├── BearAlertContentView.m │ │ │ ├── BearAlertView.h │ │ │ └── BearAlertView.m │ │ │ ├── BearBezierPath.h │ │ │ ├── BearBezierPath.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 │ │ │ ├── BearBezierPath.h │ │ │ ├── BearConstants.h │ │ │ ├── BearCutOutView.h │ │ │ ├── BearDefines.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 │ │ ├── BearBezierPath.h │ │ ├── BearConstants.h │ │ ├── BearCutOutView.h │ │ ├── BearDefines.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-CRIconView.xcscheme │ │ └── xcschememanagement.plist └── Target Support Files │ ├── BearSkill │ ├── BearSkill-dummy.m │ ├── BearSkill-prefix.pch │ └── BearSkill.xcconfig │ └── Pods-CRIconView │ ├── Pods-CRIconView-acknowledgements.markdown │ ├── Pods-CRIconView-acknowledgements.plist │ ├── Pods-CRIconView-dummy.m │ ├── Pods-CRIconView-frameworks.sh │ ├── Pods-CRIconView-resources.sh │ ├── Pods-CRIconView.debug.xcconfig │ └── Pods-CRIconView.release.xcconfig └── libjpeg.a /CRIconView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CRIconView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CRIconView.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/CRIconView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/CRIconView.xcscheme -------------------------------------------------------------------------------- /CRIconView.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CRIconView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CRIconView.xcworkspace/xcshareddata/CRIconView.xcscmblueprint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView.xcworkspace/xcshareddata/CRIconView.xcscmblueprint -------------------------------------------------------------------------------- /CRIconView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/AppDelegate.h -------------------------------------------------------------------------------- /CRIconView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/AppDelegate.m -------------------------------------------------------------------------------- /CRIconView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CRIconView/Assets.xcassets/CRIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/Assets.xcassets/CRIcon.imageset/Contents.json -------------------------------------------------------------------------------- /CRIconView/Assets.xcassets/CRIcon.imageset/logonew透明底.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/Assets.xcassets/CRIcon.imageset/logonew透明底.png -------------------------------------------------------------------------------- /CRIconView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CRIconView/Assets.xcassets/homgBg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/Assets.xcassets/homgBg.imageset/Contents.json -------------------------------------------------------------------------------- /CRIconView/Assets.xcassets/homgBg.imageset/f6f8fc3e198a21db591c54d18cb8a1402350c85b21588-ZUzi6B_fw658.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/Assets.xcassets/homgBg.imageset/f6f8fc3e198a21db591c54d18cb8a1402350c85b21588-ZUzi6B_fw658.jpeg -------------------------------------------------------------------------------- /CRIconView/Assets.xcassets/hours.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/Assets.xcassets/hours.imageset/Contents.json -------------------------------------------------------------------------------- /CRIconView/Assets.xcassets/hours.imageset/hours@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/Assets.xcassets/hours.imageset/hours@2x.png -------------------------------------------------------------------------------- /CRIconView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CRIconView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CRIconView/CRMaskAnimationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/CRMaskAnimationView.h -------------------------------------------------------------------------------- /CRIconView/CRMaskAnimationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/CRMaskAnimationView.m -------------------------------------------------------------------------------- /CRIconView/CRMaskImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/CRMaskImageView.h -------------------------------------------------------------------------------- /CRIconView/CRMaskImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/CRMaskImageView.m -------------------------------------------------------------------------------- /CRIconView/CRShiningAnimationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/CRShiningAnimationView.h -------------------------------------------------------------------------------- /CRIconView/CRShiningAnimationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/CRShiningAnimationView.m -------------------------------------------------------------------------------- /CRIconView/ContourTestView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/ContourTestView.h -------------------------------------------------------------------------------- /CRIconView/ContourTestView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/ContourTestView.m -------------------------------------------------------------------------------- /CRIconView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/Info.plist -------------------------------------------------------------------------------- /CRIconView/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/PrefixHeader.pch -------------------------------------------------------------------------------- /CRIconView/TestLayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/TestLayerView.h -------------------------------------------------------------------------------- /CRIconView/TestLayerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/TestLayerView.m -------------------------------------------------------------------------------- /CRIconView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/ViewController.h -------------------------------------------------------------------------------- /CRIconView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/ViewController.m -------------------------------------------------------------------------------- /CRIconView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/CRIconView/main.m -------------------------------------------------------------------------------- /Images/CRIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Images/CRIcon.png -------------------------------------------------------------------------------- /Images/logonew.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Images/logonew.sketch -------------------------------------------------------------------------------- /Images/logonew渐变调整完成.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Images/logonew渐变调整完成.sketch -------------------------------------------------------------------------------- /Images/logonew透明底.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Images/logonew透明底.png -------------------------------------------------------------------------------- /Images/logonew透明底.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Images/logonew透明底.sketch -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Podfile -------------------------------------------------------------------------------- /Pods/BearSkill/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/LICENSE -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/AttributeString/NSMutableAttributedString+BearSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/AttributeString/NSMutableAttributedString+BearSet.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/AttributeString/NSMutableAttributedString+BearSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/AttributeString/NSMutableAttributedString+BearSet.m -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/BearDefines/BearDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/BearDefines/BearDefines.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Constants/ApplicationOpenURLManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/Constants/ApplicationOpenURLManager.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Constants/ApplicationOpenURLManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/Constants/ApplicationOpenURLManager.m -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Constants/BearConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/Constants/BearConstants.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Constants/BearConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/Constants/BearConstants.m -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Layout/UITableView+BearStoreCellHeight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/Layout/UITableView+BearStoreCellHeight.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Layout/UITableView+BearStoreCellHeight.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/Layout/UITableView+BearStoreCellHeight.m -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Layout/UIView+BearSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/Layout/UIView+BearSet.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/Layout/UIView+BearSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/Layout/UIView+BearSet.m -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/UIAndExtend/BearAlertView/BearAlertBtnsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/UIAndExtend/BearAlertView/BearAlertBtnsView.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/UIAndExtend/BearAlertView/BearAlertBtnsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/UIAndExtend/BearAlertView/BearAlertBtnsView.m -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/UIAndExtend/BearAlertView/BearAlertContentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/UIAndExtend/BearAlertView/BearAlertContentView.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/UIAndExtend/BearAlertView/BearAlertContentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/UIAndExtend/BearAlertView/BearAlertContentView.m -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/UIAndExtend/BearAlertView/BearAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/UIAndExtend/BearAlertView/BearAlertView.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/UIAndExtend/BearAlertView/BearAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/UIAndExtend/BearAlertView/BearAlertView.m -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/UIAndExtend/BearBezierPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/UIAndExtend/BearBezierPath.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/UIAndExtend/BearBezierPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/UIAndExtend/BearBezierPath.m -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/UIAndExtend/BearCutOutView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/UIAndExtend/BearCutOutView.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/UIAndExtend/BearCutOutView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/UIAndExtend/BearCutOutView.m -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/UIAndExtend/UILabel+BearSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/UIAndExtend/UILabel+BearSet.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/UIAndExtend/UILabel+BearSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/UIAndExtend/UILabel+BearSet.m -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/UIAndExtend/UITextField+BearLimitLength.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/UIAndExtend/UITextField+BearLimitLength.h -------------------------------------------------------------------------------- /Pods/BearSkill/Pod/UIAndExtend/UITextField+BearLimitLength.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/Pod/UIAndExtend/UITextField+BearLimitLength.m -------------------------------------------------------------------------------- /Pods/BearSkill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/BearSkill/README.md -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/ApplicationOpenURLManager.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Constants/ApplicationOpenURLManager.h -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/BearAlertBtnsView.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/UIAndExtend/BearAlertView/BearAlertBtnsView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/BearAlertContentView.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/UIAndExtend/BearAlertView/BearAlertContentView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/BearAlertView.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/UIAndExtend/BearAlertView/BearAlertView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/BearBezierPath.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/UIAndExtend/BearBezierPath.h -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/BearConstants.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Constants/BearConstants.h -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/BearCutOutView.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/UIAndExtend/BearCutOutView.h -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/BearDefines.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/BearDefines/BearDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/NSMutableAttributedString+BearSet.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/AttributeString/NSMutableAttributedString+BearSet.h -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/UILabel+BearSet.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/UIAndExtend/UILabel+BearSet.h -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/UITableView+BearStoreCellHeight.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Layout/UITableView+BearStoreCellHeight.h -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/UITextField+BearLimitLength.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/UIAndExtend/UITextField+BearLimitLength.h -------------------------------------------------------------------------------- /Pods/Headers/Private/BearSkill/UIView+BearSet.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Layout/UIView+BearSet.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/ApplicationOpenURLManager.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Constants/ApplicationOpenURLManager.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/BearAlertBtnsView.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/UIAndExtend/BearAlertView/BearAlertBtnsView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/BearAlertContentView.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/UIAndExtend/BearAlertView/BearAlertContentView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/BearAlertView.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/UIAndExtend/BearAlertView/BearAlertView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/BearBezierPath.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/UIAndExtend/BearBezierPath.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/BearConstants.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Constants/BearConstants.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/BearCutOutView.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/UIAndExtend/BearCutOutView.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/BearDefines.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/BearDefines/BearDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/NSMutableAttributedString+BearSet.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/AttributeString/NSMutableAttributedString+BearSet.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/UILabel+BearSet.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/UIAndExtend/UILabel+BearSet.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/UITableView+BearStoreCellHeight.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Layout/UITableView+BearStoreCellHeight.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/UITextField+BearLimitLength.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/UIAndExtend/UITextField+BearLimitLength.h -------------------------------------------------------------------------------- /Pods/Headers/Public/BearSkill/UIView+BearSet.h: -------------------------------------------------------------------------------- 1 | ../../../BearSkill/Pod/Layout/UIView+BearSet.h -------------------------------------------------------------------------------- /Pods/Local Podspecs/BearSkill.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/Local Podspecs/BearSkill.podspec.json -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/BearSkill.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/Pods.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/BearSkill.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/Pods-CRIconView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/Pods.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/Pods-CRIconView.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/Pods.xcodeproj/xcuserdata/bear.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/BearSkill/BearSkill-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/Target Support Files/BearSkill/BearSkill-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/BearSkill/BearSkill-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/Target Support Files/BearSkill/BearSkill-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/BearSkill/BearSkill.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/Target Support Files/BearSkill/BearSkill.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRIconView/Pods-CRIconView-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/Target Support Files/Pods-CRIconView/Pods-CRIconView-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRIconView/Pods-CRIconView-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/Target Support Files/Pods-CRIconView/Pods-CRIconView-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRIconView/Pods-CRIconView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/Target Support Files/Pods-CRIconView/Pods-CRIconView-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRIconView/Pods-CRIconView-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/Target Support Files/Pods-CRIconView/Pods-CRIconView-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRIconView/Pods-CRIconView-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/Target Support Files/Pods-CRIconView/Pods-CRIconView-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRIconView/Pods-CRIconView.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/Target Support Files/Pods-CRIconView/Pods-CRIconView.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-CRIconView/Pods-CRIconView.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/Pods/Target Support Files/Pods-CRIconView/Pods-CRIconView.release.xcconfig -------------------------------------------------------------------------------- /libjpeg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CRAnimation/CRMaskImageView/HEAD/libjpeg.a --------------------------------------------------------------------------------