├── AbstractAlertView ├── AbstractAlertView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── YouXianMing.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── YouXianMing.xcuserdatad │ │ └── xcschemes │ │ │ ├── AbstractAlertView.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── xcschemes │ │ └── AbstractAlertView.xcscheme └── AbstractAlertView │ ├── AbstractAlertView.h │ ├── AbstractAlertView.m │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── NormalAlertView.h │ ├── NormalAlertView.m │ ├── UIView+AnimationProperty.h │ ├── UIView+AnimationProperty.m │ ├── UIView+SetRect.h │ ├── UIView+SetRect.m │ ├── ViewController.h │ ├── ViewController.m │ ├── WxHxD.h │ └── main.m ├── BadgeValueView ├── BadgeValueView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── YouXianMing.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── YouXianMing.xcuserdatad │ │ └── xcschemes │ │ │ ├── BadgeValueView.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── xcschemes │ │ └── BadgeValueView.xcscheme └── BadgeValueView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── BadgeValueView.h │ ├── BadgeValueView.m │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── GCD.h │ ├── GCDGroup.h │ ├── GCDGroup.m │ ├── GCDQueue.h │ ├── GCDQueue.m │ ├── GCDSemaphore.h │ ├── GCDSemaphore.m │ ├── GCDTimer.h │ ├── GCDTimer.m │ ├── Info.plist │ ├── UIView+SetRect.h │ ├── UIView+SetRect.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── BaseButton ├── BaseButton.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── YouXianMing.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── YouXianMing.xcuserdatad │ │ └── xcschemes │ │ │ ├── BaseButton.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── xcschemes │ │ └── BaseButton.xcscheme └── BaseButton │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── BaseControl.h │ ├── BaseControl.m │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── PressButton.h │ ├── PressButton.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── BookTextView ├── BookTextView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── YouXianMing.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── YouXianMing.xcuserdatad │ │ └── xcschemes │ │ │ ├── BookTextView.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── xcschemes │ │ └── BookTextView.xcscheme └── BookTextView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── AttributeString │ ├── ConfigAttributedString.h │ ├── ConfigAttributedString.m │ ├── ParagraphAttributes+Constructor.h │ ├── ParagraphAttributes+Constructor.m │ ├── ParagraphAttributes.h │ └── ParagraphAttributes.m │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── BookTextView.h │ ├── BookTextView.m │ ├── BookTextView.pch │ ├── ExclusionView.h │ ├── ExclusionView.m │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── demo@2x.png │ ├── lorem.txt │ ├── main.m │ └── 方正清刻本悦宋简体.ttf ├── CGContextObject ├── CGContextObject.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── YouXianMing.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── YouXianMing.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ ├── CGContextObject.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── xcschemes │ │ ├── CGContextObject.xcscheme │ │ └── xcschememanagement.plist ├── CGContextObject │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── CGContextObject.h │ ├── CGContextObject.m │ ├── CGContextObjectConfig.h │ ├── CGContextObjectConfig.m │ ├── DrawGradientColorView.h │ ├── DrawGradientColorView.m │ ├── DrawGradientColorViewController.h │ ├── DrawGradientColorViewController.m │ ├── DrawImageView.h │ ├── DrawImageView.m │ ├── DrawImageViewController.h │ ├── DrawImageViewController.m │ ├── DrawLineView.h │ ├── DrawLineView.m │ ├── DrawLineViewController.h │ ├── DrawLineViewController.m │ ├── DrawRectView.h │ ├── DrawRectView.m │ ├── DrawRectViewController.h │ ├── DrawRectViewController.m │ ├── DrawStringView.h │ ├── DrawStringView.m │ ├── DrawStringViewController.h │ ├── DrawStringViewController.m │ ├── GradientColor.h │ ├── GradientColor.m │ ├── Info.plist │ ├── RGBColor.h │ ├── RGBColor.m │ ├── StringAttribute │ │ ├── AbstractAttribute │ │ │ ├── StringAttribute.h │ │ │ ├── StringAttribute.m │ │ │ └── StringAttributeProtocol.h │ │ ├── ConcreteAttribute │ │ │ ├── FontAttribute.h │ │ │ ├── FontAttribute.m │ │ │ ├── ForegroundColorAttribute.h │ │ │ └── ForegroundColorAttribute.m │ │ ├── StringAttribute+Category │ │ │ ├── NSMutableAttributedString+StringAttribute.h │ │ │ ├── NSMutableAttributedString+StringAttribute.m │ │ │ ├── NSString+StringAttribute.h │ │ │ └── NSString+StringAttribute.m │ │ └── StringAttributeHelper.h │ ├── ViewController.h │ ├── ViewController.m │ ├── image@2x.png │ └── main.m └── README.md ├── CircleView ├── CircleView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── CircleView.xccheckout │ │ └── xcuserdata │ │ │ └── YouXianMing.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── YouXianMing.xcuserdatad │ │ └── xcschemes │ │ │ ├── CircleView.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── xcschemes │ │ └── CircleView.xcscheme └── CircleView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── CircleView.h │ ├── CircleView.m │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── YXEasing.h │ ├── YXEasing.m │ ├── colors@2x.png │ ├── easing.c │ ├── easing.h │ └── main.m ├── CollectionGridView ├── CollectionGridView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── xcschemes │ │ ├── CollectionGridView.xcscheme │ │ └── xcschememanagement.plist └── CollectionGridView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CityModel.h │ ├── CityModel.m │ ├── CollectionGridCellDataAdapter.h │ ├── CollectionGridCellDataAdapter.m │ ├── CollectionGridView.h │ ├── CollectionGridView.m │ ├── CustomCollectionGridViewCell.h │ ├── CustomCollectionGridViewCell.m │ ├── Info.plist │ ├── SelectedCollectionViewCell.h │ ├── SelectedCollectionViewCell.m │ ├── UIView+SetRect.h │ ├── UIView+SetRect.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── ColorfulProgressView ├── ColorfulProgressView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── YouXianMing.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── YouXianMing.xcuserdatad │ │ └── xcschemes │ │ │ ├── ColorfulProgressView.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── xcschemes │ │ └── ColorfulProgressView.xcscheme └── ColorfulProgressView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── ColorfulProgressView.h │ ├── ColorfulProgressView.m │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── ProgressColor.h │ ├── ProgressColor.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── CustomButton ├── CustomButton.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── YouXianMing.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── YouXianMing.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ ├── CustomButton.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── xcschemes │ │ └── CustomButton.xcscheme └── CustomButton │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── BaseControl.h │ ├── BaseControl.m │ ├── CustomButton.h │ ├── CustomButton.m │ ├── Info.plist │ ├── UIView+SetRect.h │ ├── UIView+SetRect.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── DrawRectObject ├── DrawRectObject.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── DrawRectObject.xcscheme │ │ └── xcschememanagement.plist └── DrawRectObject │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CustomDrawingView.h │ ├── CustomDrawingView.m │ ├── DrawRectObject.h │ ├── DrawRectObject.m │ ├── DrawingColor.h │ ├── DrawingColor.m │ ├── DrawingStyle.h │ ├── DrawingStyle.m │ ├── Info.plist │ ├── ReplicatorLineAnimationView.h │ ├── ReplicatorLineAnimationView.m │ ├── TmpView.h │ ├── TmpView.m │ ├── UIView+SetRect.h │ ├── UIView+SetRect.m │ ├── ViewController.h │ ├── ViewController.m │ ├── WaveView.h │ ├── WaveView.m │ └── main.m ├── FBGlowLabel ├── FBGlowLabel.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── xcschemes │ │ ├── FBGlowLabel.xcscheme │ │ └── xcschememanagement.plist └── FBGlowLabel │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── FBGlowLabel.h │ ├── FBGlowLabel.m │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── FontList ├── Font.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── YouXianMing.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── YouXianMing.xcuserdatad │ │ └── xcschemes │ │ │ ├── Font.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── xcschemes │ │ └── Font.xcscheme └── Font │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── FontCell.h │ ├── FontCell.m │ ├── FontInfomation.h │ ├── FontInfomation.m │ ├── FontTitleHeaderView.h │ ├── FontTitleHeaderView.m │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── GlowView ├── GlowView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── YouXianMing.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── YouXianMing.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ ├── GlowView.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── xcschemes │ │ └── GlowView.xcscheme └── GlowView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── UIView+GlowView.h │ ├── UIView+GlowView.m │ ├── ViewController.h │ ├── ViewController.m │ ├── demo.png │ └── main.m ├── GradientColorView ├── GradientColorView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── YouXianMing.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── YouXianMing.xcuserdatad │ │ └── xcschemes │ │ │ ├── GradientColorView.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── xcschemes │ │ └── GradientColorView.xcscheme └── GradientColorView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── GradientColorView.h │ ├── GradientColorView.m │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── GradientLayerView ├── GradientLayer.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── YouXianMing.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── YouXianMing.xcuserdatad │ │ └── xcschemes │ │ │ ├── GradientLayer.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── xcschemes │ │ └── GradientLayer.xcscheme └── GradientLayer │ ├── AngleGradientLayer.h │ ├── AngleGradientLayer.m │ ├── AngleGradientView.h │ ├── AngleGradientView.m │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── CircleView.h │ ├── CircleView.m │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ ├── YXEasing.h │ ├── YXEasing.m │ ├── contents@2x.png │ ├── easing.c │ ├── easing.h │ └── main.m ├── IconEdgeInsetsLabel ├── IconEdgeInsetsLabel.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── YouXianMing.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── YouXianMing.xcuserdatad │ │ └── xcschemes │ │ │ ├── IconEdgeInsetsLabel.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── xcschemes │ │ └── IconEdgeInsetsLabel.xcscheme └── IconEdgeInsetsLabel │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── mail.imageset │ │ ├── Contents.json │ │ ├── mail@2x.png │ │ └── mail@3x.png │ ├── ok.imageset │ │ ├── Contents.json │ │ ├── ok@2x.png │ │ └── ok@3x.png │ ├── phone_orange.imageset │ │ ├── Contents.json │ │ ├── phone_orange@2x.png │ │ └── phone_orange@3x.png │ └── tag03.imageset │ │ ├── Contents.json │ │ ├── tag03@2x.png │ │ └── tag03@3x.png │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── HexColors.h │ ├── HexColors.m │ ├── IconEdgeInsetsLabel.h │ ├── IconEdgeInsetsLabel.m │ ├── Info.plist │ ├── UIView+SetRect.h │ ├── UIView+SetRect.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── IrregularGridCollectionView ├── IrregularGridCollectionView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcuserdata │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── IrregularGridCollectionView.xcscheme └── IrregularGridCollectionView │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── CustomIrregularGridViewCell.h │ ├── CustomIrregularGridViewCell.m │ ├── Info.plist │ ├── IrregularGridCellDataAdapter.h │ ├── IrregularGridCellDataAdapter.m │ ├── IrregularGridCollectionView.h │ ├── IrregularGridCollectionView.m │ ├── Math.h │ ├── Math.m │ ├── MaximumSpacingFlowLayout.h │ ├── MaximumSpacingFlowLayout.m │ ├── PictureCell.h │ ├── PictureCell.m │ ├── RedButtonCell.h │ ├── RedButtonCell.m │ ├── UIView+SetRect.h │ ├── UIView+SetRect.m │ ├── ViewController.h │ ├── ViewController.m │ ├── YellowButtonCell.h │ ├── YellowButtonCell.m │ ├── main.m │ ├── red_nor@2x.png │ └── yellow_nor@2x.png ├── LineAnimationView ├── AnimationLine.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── AnimationLine.xccheckout │ │ └── xcuserdata │ │ │ └── YouXianMing.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── YouXianMing.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ ├── AnimationLine.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── xcschemes │ │ └── AnimationLine.xcscheme └── AnimationLine │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── LineAnimationView.h │ ├── LineAnimationView.m │ ├── ViewController.h │ ├── ViewController.m │ ├── demo2@2x.png │ ├── demo@2x.png │ └── main.m ├── POPNumberCount ├── POP.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── YouXianMing.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── YouXianMing.xcuserdatad │ │ └── xcschemes │ │ │ ├── POP.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── xcschemes │ │ └── POP.xcscheme └── POP │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── ConfigAttributedString.h │ ├── ConfigAttributedString.m │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── NSString+RichText.h │ ├── NSString+RichText.m │ ├── POP.pch │ ├── POPNumberCount.h │ ├── POPNumberCount.m │ ├── PercentCount.h │ ├── PercentCount.m │ ├── ViewController.h │ ├── ViewController.m │ ├── main.m │ └── pop │ ├── POP.h │ ├── POPAction.h │ ├── POPAnimatableProperty.h │ ├── POPAnimatableProperty.mm │ ├── POPAnimation.h │ ├── POPAnimation.mm │ ├── POPAnimationEvent.h │ ├── POPAnimationEvent.mm │ ├── POPAnimationEventInternal.h │ ├── POPAnimationExtras.h │ ├── POPAnimationExtras.mm │ ├── POPAnimationInternal.h │ ├── POPAnimationPrivate.h │ ├── POPAnimationRuntime.h │ ├── POPAnimationRuntime.mm │ ├── POPAnimationTracer.h │ ├── POPAnimationTracer.mm │ ├── POPAnimationTracerInternal.h │ ├── POPAnimator.h │ ├── POPAnimator.mm │ ├── POPAnimatorPrivate.h │ ├── POPBasicAnimation.h │ ├── POPBasicAnimation.mm │ ├── POPBasicAnimationInternal.h │ ├── POPCGUtils.h │ ├── POPCGUtils.mm │ ├── POPCustomAnimation.h │ ├── POPCustomAnimation.mm │ ├── POPDecayAnimation.h │ ├── POPDecayAnimation.mm │ ├── POPDecayAnimationInternal.h │ ├── POPDefines.h │ ├── POPGeometry.h │ ├── POPGeometry.mm │ ├── POPLayerExtras.h │ ├── POPLayerExtras.mm │ ├── POPMath.h │ ├── POPMath.mm │ ├── POPPropertyAnimation.h │ ├── POPPropertyAnimation.mm │ ├── POPPropertyAnimationInternal.h │ ├── POPSpringAnimation.h │ ├── POPSpringAnimation.mm │ ├── POPSpringAnimationInternal.h │ ├── POPSpringSolver.h │ ├── POPVector.h │ ├── POPVector.mm │ └── WebCore │ ├── FloatConversion.h │ ├── TransformationMatrix.cpp │ ├── TransformationMatrix.h │ └── UnitBezier.h ├── ParagraphString ├── ParagraphString.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcuserdata │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── ParagraphString.xcscheme └── ParagraphString │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── BaseParagraphStyle.h │ ├── BaseParagraphStyle.m │ ├── Info.plist │ ├── InputMono-ExtraLightItalic.ttf │ ├── InputMono-Light.ttf │ ├── NewsCell.h │ ├── NewsCell.m │ ├── NewsModel.h │ ├── NewsModel.m │ ├── NormalStyle.h │ ├── NormalStyle.m │ ├── ParagraphString.h │ ├── ParagraphString.m │ ├── UIView+SetRect.h │ ├── UIView+SetRect.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── PlaceholderTextView ├── PlaceholderTextView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── xcschemes │ │ ├── PlaceholderTextView.xcscheme │ │ └── xcschememanagement.plist └── PlaceholderTextView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── PlaceholderTextView+ConvenientSetup.h │ ├── PlaceholderTextView+ConvenientSetup.m │ ├── PlaceholderTextView.h │ ├── PlaceholderTextView.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── README.md ├── SDWebImageViewPlaceHorder ├── SDWebImageViewPlaceHorder.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcuserdata │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── xcschemes │ │ └── SDWebImageViewPlaceHorder.xcscheme └── SDWebImageViewPlaceHorder │ ├── 1.png │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── ImageCell.h │ ├── ImageCell.m │ ├── Info.plist │ ├── PlaceholderImageView.h │ ├── PlaceholderImageView.m │ ├── SDWebImage │ ├── MKAnnotationView+WebCache.h │ ├── MKAnnotationView+WebCache.m │ ├── NSData+ImageContentType.h │ ├── NSData+ImageContentType.m │ ├── SDImageCache.h │ ├── SDImageCache.m │ ├── SDWebImageCompat.h │ ├── SDWebImageCompat.m │ ├── SDWebImageDecoder.h │ ├── SDWebImageDecoder.m │ ├── SDWebImageDownloader.h │ ├── SDWebImageDownloader.m │ ├── SDWebImageDownloaderOperation.h │ ├── SDWebImageDownloaderOperation.m │ ├── SDWebImageManager.h │ ├── SDWebImageManager.m │ ├── SDWebImageOperation.h │ ├── SDWebImagePrefetcher.h │ ├── SDWebImagePrefetcher.m │ ├── UIButton+WebCache.h │ ├── UIButton+WebCache.m │ ├── UIImage+GIF.h │ ├── UIImage+GIF.m │ ├── UIImage+MultiFormat.h │ ├── UIImage+MultiFormat.m │ ├── UIImage+WebP.h │ ├── UIImage+WebP.m │ ├── UIImageView+HighlightedWebCache.h │ ├── UIImageView+HighlightedWebCache.m │ ├── UIImageView+WebCache.h │ ├── UIImageView+WebCache.m │ ├── UIView+WebCacheOperation.h │ └── UIView+WebCacheOperation.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── Special-Effect-Cell ├── TableView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── YouXianMing.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── YouXianMing.xcuserdatad │ │ └── xcschemes │ │ │ ├── TableView.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── xcschemes │ │ └── TableView.xcscheme └── TableView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── DataCell.h │ ├── DataCell.m │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── UIView+SetRect.h │ ├── UIView+SetRect.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── Swift-EasingAnimation ├── Swift-EasingAnimation.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── YouXianMing.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── YouXianMing.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ ├── Swift-EasingAnimation.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── xcschemes │ │ ├── Swift-EasingAnimation.xcscheme │ │ └── xcschememanagement.plist └── Swift-EasingAnimation │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── ComplexEasingValue.swift │ ├── Easing.swift │ ├── EasingValue.swift │ ├── Info.plist │ └── ViewController.swift ├── TTTAttributeLabelView ├── TapLabelView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── YouXianMing.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── YouXianMing.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ ├── TapLabelView.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── xcschemes │ │ └── TapLabelView.xcscheme └── TapLabelView │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── ConfigAttributedString.h │ ├── ConfigAttributedString.m │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── NSString+RichText.h │ ├── NSString+RichText.m │ ├── TTTAttributedLabel │ ├── TTTAttributeLabelView.h │ ├── TTTAttributeLabelView.m │ ├── TTTAttributedLabel.h │ └── TTTAttributedLabel.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── TransformationFadeView ├── TransformationFadeView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── TransformationFadeView.xccheckout │ │ └── xcuserdata │ │ │ └── YouXianMing.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── YouXianMing.xcuserdatad │ │ └── xcschemes │ │ │ ├── TransformationFadeView.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── xcschemes │ │ └── TransformationFadeView.xcscheme └── TransformationFadeView │ ├── 1@2x.png │ ├── 2@2x.png │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── TranformFadeView.h │ ├── TranformFadeView.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── UITextFieldView ├── UITextFieldView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── YouXianMing1987@iCloud.com.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── YouXianMing1987@iCloud.com.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── UITextFieldView.xcscheme │ └── xcschememanagement.plist └── UITextFieldView ├── AbsTextFieldViewValidator.h ├── AbsTextFieldViewValidator.m ├── AccessViewTagProtocol.h ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Info.plist ├── PasswordValidator.h ├── PasswordValidator.m ├── PhoneValidator.h ├── PhoneValidator.m ├── TextFieldValidatorMessage.h ├── TextFieldValidatorMessage.m ├── TouchEventView.h ├── TouchEventView.m ├── UIAlertAction+Constructor.h ├── UIAlertAction+Constructor.m ├── UIAlertController+Constructor.h ├── UIAlertController+Constructor.m ├── UITextFieldView.h ├── UITextFieldView.m ├── UIView+SetRect.h ├── UIView+SetRect.m ├── ViewController.h ├── ViewController.m └── main.m /AbstractAlertView/AbstractAlertView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/AbstractAlertView/AbstractAlertView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AbstractAlertView/AbstractAlertView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/AbstractAlertView/AbstractAlertView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AbstractAlertView/AbstractAlertView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/AbstractAlertView/AbstractAlertView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AbstractAlertView/AbstractAlertView/AbstractAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/AbstractAlertView/AbstractAlertView/AbstractAlertView.h -------------------------------------------------------------------------------- /AbstractAlertView/AbstractAlertView/AbstractAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/AbstractAlertView/AbstractAlertView/AbstractAlertView.m -------------------------------------------------------------------------------- /AbstractAlertView/AbstractAlertView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/AbstractAlertView/AbstractAlertView/AppDelegate.h -------------------------------------------------------------------------------- /AbstractAlertView/AbstractAlertView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/AbstractAlertView/AbstractAlertView/AppDelegate.m -------------------------------------------------------------------------------- /AbstractAlertView/AbstractAlertView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/AbstractAlertView/AbstractAlertView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AbstractAlertView/AbstractAlertView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/AbstractAlertView/AbstractAlertView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AbstractAlertView/AbstractAlertView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/AbstractAlertView/AbstractAlertView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AbstractAlertView/AbstractAlertView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/AbstractAlertView/AbstractAlertView/Info.plist -------------------------------------------------------------------------------- /AbstractAlertView/AbstractAlertView/NormalAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/AbstractAlertView/AbstractAlertView/NormalAlertView.h -------------------------------------------------------------------------------- /AbstractAlertView/AbstractAlertView/NormalAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/AbstractAlertView/AbstractAlertView/NormalAlertView.m -------------------------------------------------------------------------------- /AbstractAlertView/AbstractAlertView/UIView+AnimationProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/AbstractAlertView/AbstractAlertView/UIView+AnimationProperty.h -------------------------------------------------------------------------------- /AbstractAlertView/AbstractAlertView/UIView+AnimationProperty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/AbstractAlertView/AbstractAlertView/UIView+AnimationProperty.m -------------------------------------------------------------------------------- /AbstractAlertView/AbstractAlertView/UIView+SetRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/AbstractAlertView/AbstractAlertView/UIView+SetRect.h -------------------------------------------------------------------------------- /AbstractAlertView/AbstractAlertView/UIView+SetRect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/AbstractAlertView/AbstractAlertView/UIView+SetRect.m -------------------------------------------------------------------------------- /AbstractAlertView/AbstractAlertView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/AbstractAlertView/AbstractAlertView/ViewController.h -------------------------------------------------------------------------------- /AbstractAlertView/AbstractAlertView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/AbstractAlertView/AbstractAlertView/ViewController.m -------------------------------------------------------------------------------- /AbstractAlertView/AbstractAlertView/WxHxD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/AbstractAlertView/AbstractAlertView/WxHxD.h -------------------------------------------------------------------------------- /AbstractAlertView/AbstractAlertView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/AbstractAlertView/AbstractAlertView/main.m -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/BadgeValueView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/BadgeValueView.xcscheme -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView/AppDelegate.h -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView/AppDelegate.m -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView/BadgeValueView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView/BadgeValueView.h -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView/BadgeValueView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView/BadgeValueView.m -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView/GCD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView/GCD.h -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView/GCDGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView/GCDGroup.h -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView/GCDGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView/GCDGroup.m -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView/GCDQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView/GCDQueue.h -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView/GCDQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView/GCDQueue.m -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView/GCDSemaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView/GCDSemaphore.h -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView/GCDSemaphore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView/GCDSemaphore.m -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView/GCDTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView/GCDTimer.h -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView/GCDTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView/GCDTimer.m -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView/Info.plist -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView/UIView+SetRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView/UIView+SetRect.h -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView/UIView+SetRect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView/UIView+SetRect.m -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView/ViewController.h -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView/ViewController.m -------------------------------------------------------------------------------- /BadgeValueView/BadgeValueView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BadgeValueView/BadgeValueView/main.m -------------------------------------------------------------------------------- /BaseButton/BaseButton.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BaseButton/BaseButton.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BaseButton/BaseButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BaseButton/BaseButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BaseButton/BaseButton.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/BaseButton.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BaseButton/BaseButton.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/BaseButton.xcscheme -------------------------------------------------------------------------------- /BaseButton/BaseButton.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BaseButton/BaseButton.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /BaseButton/BaseButton.xcodeproj/xcuserdata/YouXianMing1987@iCloud.com.xcuserdatad/xcschemes/BaseButton.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BaseButton/BaseButton.xcodeproj/xcuserdata/YouXianMing1987@iCloud.com.xcuserdatad/xcschemes/BaseButton.xcscheme -------------------------------------------------------------------------------- /BaseButton/BaseButton/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BaseButton/BaseButton/AppDelegate.h -------------------------------------------------------------------------------- /BaseButton/BaseButton/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BaseButton/BaseButton/AppDelegate.m -------------------------------------------------------------------------------- /BaseButton/BaseButton/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BaseButton/BaseButton/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /BaseButton/BaseButton/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BaseButton/BaseButton/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /BaseButton/BaseButton/BaseControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BaseButton/BaseButton/BaseControl.h -------------------------------------------------------------------------------- /BaseButton/BaseButton/BaseControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BaseButton/BaseButton/BaseControl.m -------------------------------------------------------------------------------- /BaseButton/BaseButton/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BaseButton/BaseButton/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /BaseButton/BaseButton/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BaseButton/BaseButton/Info.plist -------------------------------------------------------------------------------- /BaseButton/BaseButton/PressButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BaseButton/BaseButton/PressButton.h -------------------------------------------------------------------------------- /BaseButton/BaseButton/PressButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BaseButton/BaseButton/PressButton.m -------------------------------------------------------------------------------- /BaseButton/BaseButton/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BaseButton/BaseButton/ViewController.h -------------------------------------------------------------------------------- /BaseButton/BaseButton/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BaseButton/BaseButton/ViewController.m -------------------------------------------------------------------------------- /BaseButton/BaseButton/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BaseButton/BaseButton/main.m -------------------------------------------------------------------------------- /BookTextView/BookTextView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BookTextView/BookTextView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /BookTextView/BookTextView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/BookTextView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/BookTextView.xcscheme -------------------------------------------------------------------------------- /BookTextView/BookTextView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /BookTextView/BookTextView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView/AppDelegate.h -------------------------------------------------------------------------------- /BookTextView/BookTextView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView/AppDelegate.m -------------------------------------------------------------------------------- /BookTextView/BookTextView/AttributeString/ConfigAttributedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView/AttributeString/ConfigAttributedString.h -------------------------------------------------------------------------------- /BookTextView/BookTextView/AttributeString/ConfigAttributedString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView/AttributeString/ConfigAttributedString.m -------------------------------------------------------------------------------- /BookTextView/BookTextView/AttributeString/ParagraphAttributes+Constructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView/AttributeString/ParagraphAttributes+Constructor.h -------------------------------------------------------------------------------- /BookTextView/BookTextView/AttributeString/ParagraphAttributes+Constructor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView/AttributeString/ParagraphAttributes+Constructor.m -------------------------------------------------------------------------------- /BookTextView/BookTextView/AttributeString/ParagraphAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView/AttributeString/ParagraphAttributes.h -------------------------------------------------------------------------------- /BookTextView/BookTextView/AttributeString/ParagraphAttributes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView/AttributeString/ParagraphAttributes.m -------------------------------------------------------------------------------- /BookTextView/BookTextView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /BookTextView/BookTextView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /BookTextView/BookTextView/BookTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView/BookTextView.h -------------------------------------------------------------------------------- /BookTextView/BookTextView/BookTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView/BookTextView.m -------------------------------------------------------------------------------- /BookTextView/BookTextView/BookTextView.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView/BookTextView.pch -------------------------------------------------------------------------------- /BookTextView/BookTextView/ExclusionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView/ExclusionView.h -------------------------------------------------------------------------------- /BookTextView/BookTextView/ExclusionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView/ExclusionView.m -------------------------------------------------------------------------------- /BookTextView/BookTextView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /BookTextView/BookTextView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView/Info.plist -------------------------------------------------------------------------------- /BookTextView/BookTextView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView/ViewController.h -------------------------------------------------------------------------------- /BookTextView/BookTextView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView/ViewController.m -------------------------------------------------------------------------------- /BookTextView/BookTextView/demo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView/demo@2x.png -------------------------------------------------------------------------------- /BookTextView/BookTextView/lorem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView/lorem.txt -------------------------------------------------------------------------------- /BookTextView/BookTextView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView/main.m -------------------------------------------------------------------------------- /BookTextView/BookTextView/方正清刻本悦宋简体.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/BookTextView/BookTextView/方正清刻本悦宋简体.ttf -------------------------------------------------------------------------------- /CGContextObject/CGContextObject.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CGContextObject/CGContextObject.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CGContextObject/CGContextObject.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /CGContextObject/CGContextObject.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/CGContextObject.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/CGContextObject.xcscheme -------------------------------------------------------------------------------- /CGContextObject/CGContextObject.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/AppDelegate.h -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/AppDelegate.m -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/CGContextObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/CGContextObject.h -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/CGContextObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/CGContextObject.m -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/CGContextObjectConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/CGContextObjectConfig.h -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/CGContextObjectConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/CGContextObjectConfig.m -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/DrawGradientColorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/DrawGradientColorView.h -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/DrawGradientColorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/DrawGradientColorView.m -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/DrawGradientColorViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/DrawGradientColorViewController.h -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/DrawGradientColorViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/DrawGradientColorViewController.m -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/DrawImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/DrawImageView.h -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/DrawImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/DrawImageView.m -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/DrawImageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/DrawImageViewController.h -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/DrawImageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/DrawImageViewController.m -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/DrawLineView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/DrawLineView.h -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/DrawLineView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/DrawLineView.m -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/DrawLineViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/DrawLineViewController.h -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/DrawLineViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/DrawLineViewController.m -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/DrawRectView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/DrawRectView.h -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/DrawRectView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/DrawRectView.m -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/DrawRectViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/DrawRectViewController.h -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/DrawRectViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/DrawRectViewController.m -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/DrawStringView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/DrawStringView.h -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/DrawStringView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/DrawStringView.m -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/DrawStringViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/DrawStringViewController.h -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/DrawStringViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/DrawStringViewController.m -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/GradientColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/GradientColor.h -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/GradientColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/GradientColor.m -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/Info.plist -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/RGBColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/RGBColor.h -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/RGBColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/RGBColor.m -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/StringAttribute/AbstractAttribute/StringAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/StringAttribute/AbstractAttribute/StringAttribute.h -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/StringAttribute/AbstractAttribute/StringAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/StringAttribute/AbstractAttribute/StringAttribute.m -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/StringAttribute/AbstractAttribute/StringAttributeProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/StringAttribute/AbstractAttribute/StringAttributeProtocol.h -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/StringAttribute/ConcreteAttribute/FontAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/StringAttribute/ConcreteAttribute/FontAttribute.h -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/StringAttribute/ConcreteAttribute/FontAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/StringAttribute/ConcreteAttribute/FontAttribute.m -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/StringAttribute/ConcreteAttribute/ForegroundColorAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/StringAttribute/ConcreteAttribute/ForegroundColorAttribute.h -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/StringAttribute/ConcreteAttribute/ForegroundColorAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/StringAttribute/ConcreteAttribute/ForegroundColorAttribute.m -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/StringAttribute/StringAttribute+Category/NSMutableAttributedString+StringAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/StringAttribute/StringAttribute+Category/NSMutableAttributedString+StringAttribute.h -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/StringAttribute/StringAttribute+Category/NSMutableAttributedString+StringAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/StringAttribute/StringAttribute+Category/NSMutableAttributedString+StringAttribute.m -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/StringAttribute/StringAttribute+Category/NSString+StringAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/StringAttribute/StringAttribute+Category/NSString+StringAttribute.h -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/StringAttribute/StringAttribute+Category/NSString+StringAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/StringAttribute/StringAttribute+Category/NSString+StringAttribute.m -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/StringAttribute/StringAttributeHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/StringAttribute/StringAttributeHelper.h -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/ViewController.h -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/ViewController.m -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/image@2x.png -------------------------------------------------------------------------------- /CGContextObject/CGContextObject/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/CGContextObject/main.m -------------------------------------------------------------------------------- /CGContextObject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CGContextObject/README.md -------------------------------------------------------------------------------- /CircleView/CircleView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CircleView/CircleView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CircleView/CircleView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CircleView/CircleView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CircleView/CircleView.xcodeproj/project.xcworkspace/xcshareddata/CircleView.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CircleView/CircleView.xcodeproj/project.xcworkspace/xcshareddata/CircleView.xccheckout -------------------------------------------------------------------------------- /CircleView/CircleView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/CircleView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CircleView/CircleView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/CircleView.xcscheme -------------------------------------------------------------------------------- /CircleView/CircleView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CircleView/CircleView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CircleView/CircleView.xcodeproj/xcuserdata/YouXianMing1987@iCloud.com.xcuserdatad/xcschemes/CircleView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CircleView/CircleView.xcodeproj/xcuserdata/YouXianMing1987@iCloud.com.xcuserdatad/xcschemes/CircleView.xcscheme -------------------------------------------------------------------------------- /CircleView/CircleView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CircleView/CircleView/AppDelegate.h -------------------------------------------------------------------------------- /CircleView/CircleView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CircleView/CircleView/AppDelegate.m -------------------------------------------------------------------------------- /CircleView/CircleView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CircleView/CircleView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /CircleView/CircleView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CircleView/CircleView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CircleView/CircleView/CircleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CircleView/CircleView/CircleView.h -------------------------------------------------------------------------------- /CircleView/CircleView/CircleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CircleView/CircleView/CircleView.m -------------------------------------------------------------------------------- /CircleView/CircleView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CircleView/CircleView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CircleView/CircleView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CircleView/CircleView/Info.plist -------------------------------------------------------------------------------- /CircleView/CircleView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CircleView/CircleView/ViewController.h -------------------------------------------------------------------------------- /CircleView/CircleView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CircleView/CircleView/ViewController.m -------------------------------------------------------------------------------- /CircleView/CircleView/YXEasing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CircleView/CircleView/YXEasing.h -------------------------------------------------------------------------------- /CircleView/CircleView/YXEasing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CircleView/CircleView/YXEasing.m -------------------------------------------------------------------------------- /CircleView/CircleView/colors@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CircleView/CircleView/colors@2x.png -------------------------------------------------------------------------------- /CircleView/CircleView/easing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CircleView/CircleView/easing.c -------------------------------------------------------------------------------- /CircleView/CircleView/easing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CircleView/CircleView/easing.h -------------------------------------------------------------------------------- /CircleView/CircleView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CircleView/CircleView/main.m -------------------------------------------------------------------------------- /CollectionGridView/CollectionGridView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CollectionGridView/CollectionGridView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CollectionGridView/CollectionGridView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CollectionGridView/CollectionGridView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CollectionGridView/CollectionGridView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CollectionGridView/CollectionGridView/AppDelegate.h -------------------------------------------------------------------------------- /CollectionGridView/CollectionGridView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CollectionGridView/CollectionGridView/AppDelegate.m -------------------------------------------------------------------------------- /CollectionGridView/CollectionGridView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CollectionGridView/CollectionGridView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CollectionGridView/CollectionGridView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CollectionGridView/CollectionGridView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CollectionGridView/CollectionGridView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CollectionGridView/CollectionGridView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CollectionGridView/CollectionGridView/CityModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CollectionGridView/CollectionGridView/CityModel.h -------------------------------------------------------------------------------- /CollectionGridView/CollectionGridView/CityModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CollectionGridView/CollectionGridView/CityModel.m -------------------------------------------------------------------------------- /CollectionGridView/CollectionGridView/CollectionGridCellDataAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CollectionGridView/CollectionGridView/CollectionGridCellDataAdapter.h -------------------------------------------------------------------------------- /CollectionGridView/CollectionGridView/CollectionGridCellDataAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CollectionGridView/CollectionGridView/CollectionGridCellDataAdapter.m -------------------------------------------------------------------------------- /CollectionGridView/CollectionGridView/CollectionGridView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CollectionGridView/CollectionGridView/CollectionGridView.h -------------------------------------------------------------------------------- /CollectionGridView/CollectionGridView/CollectionGridView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CollectionGridView/CollectionGridView/CollectionGridView.m -------------------------------------------------------------------------------- /CollectionGridView/CollectionGridView/CustomCollectionGridViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CollectionGridView/CollectionGridView/CustomCollectionGridViewCell.h -------------------------------------------------------------------------------- /CollectionGridView/CollectionGridView/CustomCollectionGridViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CollectionGridView/CollectionGridView/CustomCollectionGridViewCell.m -------------------------------------------------------------------------------- /CollectionGridView/CollectionGridView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CollectionGridView/CollectionGridView/Info.plist -------------------------------------------------------------------------------- /CollectionGridView/CollectionGridView/SelectedCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CollectionGridView/CollectionGridView/SelectedCollectionViewCell.h -------------------------------------------------------------------------------- /CollectionGridView/CollectionGridView/SelectedCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CollectionGridView/CollectionGridView/SelectedCollectionViewCell.m -------------------------------------------------------------------------------- /CollectionGridView/CollectionGridView/UIView+SetRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CollectionGridView/CollectionGridView/UIView+SetRect.h -------------------------------------------------------------------------------- /CollectionGridView/CollectionGridView/UIView+SetRect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CollectionGridView/CollectionGridView/UIView+SetRect.m -------------------------------------------------------------------------------- /CollectionGridView/CollectionGridView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CollectionGridView/CollectionGridView/ViewController.h -------------------------------------------------------------------------------- /CollectionGridView/CollectionGridView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CollectionGridView/CollectionGridView/ViewController.m -------------------------------------------------------------------------------- /CollectionGridView/CollectionGridView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CollectionGridView/CollectionGridView/main.m -------------------------------------------------------------------------------- /ColorfulProgressView/ColorfulProgressView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ColorfulProgressView/ColorfulProgressView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ColorfulProgressView/ColorfulProgressView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ColorfulProgressView/ColorfulProgressView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ColorfulProgressView/ColorfulProgressView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ColorfulProgressView/ColorfulProgressView/AppDelegate.h -------------------------------------------------------------------------------- /ColorfulProgressView/ColorfulProgressView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ColorfulProgressView/ColorfulProgressView/AppDelegate.m -------------------------------------------------------------------------------- /ColorfulProgressView/ColorfulProgressView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ColorfulProgressView/ColorfulProgressView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ColorfulProgressView/ColorfulProgressView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ColorfulProgressView/ColorfulProgressView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ColorfulProgressView/ColorfulProgressView/ColorfulProgressView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ColorfulProgressView/ColorfulProgressView/ColorfulProgressView.h -------------------------------------------------------------------------------- /ColorfulProgressView/ColorfulProgressView/ColorfulProgressView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ColorfulProgressView/ColorfulProgressView/ColorfulProgressView.m -------------------------------------------------------------------------------- /ColorfulProgressView/ColorfulProgressView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ColorfulProgressView/ColorfulProgressView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ColorfulProgressView/ColorfulProgressView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ColorfulProgressView/ColorfulProgressView/Info.plist -------------------------------------------------------------------------------- /ColorfulProgressView/ColorfulProgressView/ProgressColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ColorfulProgressView/ColorfulProgressView/ProgressColor.h -------------------------------------------------------------------------------- /ColorfulProgressView/ColorfulProgressView/ProgressColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ColorfulProgressView/ColorfulProgressView/ProgressColor.m -------------------------------------------------------------------------------- /ColorfulProgressView/ColorfulProgressView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ColorfulProgressView/ColorfulProgressView/ViewController.h -------------------------------------------------------------------------------- /ColorfulProgressView/ColorfulProgressView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ColorfulProgressView/ColorfulProgressView/ViewController.m -------------------------------------------------------------------------------- /ColorfulProgressView/ColorfulProgressView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ColorfulProgressView/ColorfulProgressView/main.m -------------------------------------------------------------------------------- /CustomButton/CustomButton.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CustomButton/CustomButton.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CustomButton/CustomButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CustomButton/CustomButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CustomButton/CustomButton.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CustomButton/CustomButton.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /CustomButton/CustomButton.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/CustomButton.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CustomButton/CustomButton.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/CustomButton.xcscheme -------------------------------------------------------------------------------- /CustomButton/CustomButton.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CustomButton/CustomButton.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CustomButton/CustomButton/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CustomButton/CustomButton/AppDelegate.h -------------------------------------------------------------------------------- /CustomButton/CustomButton/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CustomButton/CustomButton/AppDelegate.m -------------------------------------------------------------------------------- /CustomButton/CustomButton/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CustomButton/CustomButton/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CustomButton/CustomButton/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CustomButton/CustomButton/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CustomButton/CustomButton/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CustomButton/CustomButton/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CustomButton/CustomButton/BaseControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CustomButton/CustomButton/BaseControl.h -------------------------------------------------------------------------------- /CustomButton/CustomButton/BaseControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CustomButton/CustomButton/BaseControl.m -------------------------------------------------------------------------------- /CustomButton/CustomButton/CustomButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CustomButton/CustomButton/CustomButton.h -------------------------------------------------------------------------------- /CustomButton/CustomButton/CustomButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CustomButton/CustomButton/CustomButton.m -------------------------------------------------------------------------------- /CustomButton/CustomButton/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CustomButton/CustomButton/Info.plist -------------------------------------------------------------------------------- /CustomButton/CustomButton/UIView+SetRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CustomButton/CustomButton/UIView+SetRect.h -------------------------------------------------------------------------------- /CustomButton/CustomButton/UIView+SetRect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CustomButton/CustomButton/UIView+SetRect.m -------------------------------------------------------------------------------- /CustomButton/CustomButton/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CustomButton/CustomButton/ViewController.h -------------------------------------------------------------------------------- /CustomButton/CustomButton/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CustomButton/CustomButton/ViewController.m -------------------------------------------------------------------------------- /CustomButton/CustomButton/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/CustomButton/CustomButton/main.m -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/AppDelegate.h -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/AppDelegate.m -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/CustomDrawingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/CustomDrawingView.h -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/CustomDrawingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/CustomDrawingView.m -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/DrawRectObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/DrawRectObject.h -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/DrawRectObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/DrawRectObject.m -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/DrawingColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/DrawingColor.h -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/DrawingColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/DrawingColor.m -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/DrawingStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/DrawingStyle.h -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/DrawingStyle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/DrawingStyle.m -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/Info.plist -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/ReplicatorLineAnimationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/ReplicatorLineAnimationView.h -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/ReplicatorLineAnimationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/ReplicatorLineAnimationView.m -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/TmpView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/TmpView.h -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/TmpView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/TmpView.m -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/UIView+SetRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/UIView+SetRect.h -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/UIView+SetRect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/UIView+SetRect.m -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/ViewController.h -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/ViewController.m -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/WaveView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/WaveView.h -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/WaveView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/WaveView.m -------------------------------------------------------------------------------- /DrawRectObject/DrawRectObject/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/DrawRectObject/DrawRectObject/main.m -------------------------------------------------------------------------------- /FBGlowLabel/FBGlowLabel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FBGlowLabel/FBGlowLabel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FBGlowLabel/FBGlowLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FBGlowLabel/FBGlowLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FBGlowLabel/FBGlowLabel.xcodeproj/xcuserdata/YouXianMing1987@iCloud.com.xcuserdatad/xcschemes/FBGlowLabel.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FBGlowLabel/FBGlowLabel.xcodeproj/xcuserdata/YouXianMing1987@iCloud.com.xcuserdatad/xcschemes/FBGlowLabel.xcscheme -------------------------------------------------------------------------------- /FBGlowLabel/FBGlowLabel/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FBGlowLabel/FBGlowLabel/AppDelegate.h -------------------------------------------------------------------------------- /FBGlowLabel/FBGlowLabel/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FBGlowLabel/FBGlowLabel/AppDelegate.m -------------------------------------------------------------------------------- /FBGlowLabel/FBGlowLabel/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FBGlowLabel/FBGlowLabel/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FBGlowLabel/FBGlowLabel/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FBGlowLabel/FBGlowLabel/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FBGlowLabel/FBGlowLabel/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FBGlowLabel/FBGlowLabel/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FBGlowLabel/FBGlowLabel/FBGlowLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FBGlowLabel/FBGlowLabel/FBGlowLabel.h -------------------------------------------------------------------------------- /FBGlowLabel/FBGlowLabel/FBGlowLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FBGlowLabel/FBGlowLabel/FBGlowLabel.m -------------------------------------------------------------------------------- /FBGlowLabel/FBGlowLabel/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FBGlowLabel/FBGlowLabel/Info.plist -------------------------------------------------------------------------------- /FBGlowLabel/FBGlowLabel/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FBGlowLabel/FBGlowLabel/ViewController.h -------------------------------------------------------------------------------- /FBGlowLabel/FBGlowLabel/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FBGlowLabel/FBGlowLabel/ViewController.m -------------------------------------------------------------------------------- /FBGlowLabel/FBGlowLabel/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FBGlowLabel/FBGlowLabel/main.m -------------------------------------------------------------------------------- /FontList/Font.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FontList/Font.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FontList/Font.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FontList/Font.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FontList/Font.xcodeproj/project.xcworkspace/xcuserdata/YouXianMing.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FontList/Font.xcodeproj/project.xcworkspace/xcuserdata/YouXianMing.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /FontList/Font.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/Font.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FontList/Font.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/Font.xcscheme -------------------------------------------------------------------------------- /FontList/Font.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FontList/Font.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FontList/Font.xcodeproj/xcuserdata/YouXianMing1987@iCloud.com.xcuserdatad/xcschemes/Font.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FontList/Font.xcodeproj/xcuserdata/YouXianMing1987@iCloud.com.xcuserdatad/xcschemes/Font.xcscheme -------------------------------------------------------------------------------- /FontList/Font/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FontList/Font/AppDelegate.h -------------------------------------------------------------------------------- /FontList/Font/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FontList/Font/AppDelegate.m -------------------------------------------------------------------------------- /FontList/Font/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FontList/Font/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /FontList/Font/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FontList/Font/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FontList/Font/FontCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FontList/Font/FontCell.h -------------------------------------------------------------------------------- /FontList/Font/FontCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FontList/Font/FontCell.m -------------------------------------------------------------------------------- /FontList/Font/FontInfomation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FontList/Font/FontInfomation.h -------------------------------------------------------------------------------- /FontList/Font/FontInfomation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FontList/Font/FontInfomation.m -------------------------------------------------------------------------------- /FontList/Font/FontTitleHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FontList/Font/FontTitleHeaderView.h -------------------------------------------------------------------------------- /FontList/Font/FontTitleHeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FontList/Font/FontTitleHeaderView.m -------------------------------------------------------------------------------- /FontList/Font/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FontList/Font/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FontList/Font/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FontList/Font/Info.plist -------------------------------------------------------------------------------- /FontList/Font/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FontList/Font/ViewController.h -------------------------------------------------------------------------------- /FontList/Font/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FontList/Font/ViewController.m -------------------------------------------------------------------------------- /FontList/Font/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/FontList/Font/main.m -------------------------------------------------------------------------------- /GlowView/GlowView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GlowView/GlowView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GlowView/GlowView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GlowView/GlowView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GlowView/GlowView.xcodeproj/project.xcworkspace/xcuserdata/YouXianMing.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GlowView/GlowView.xcodeproj/project.xcworkspace/xcuserdata/YouXianMing.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /GlowView/GlowView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GlowView/GlowView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /GlowView/GlowView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/GlowView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GlowView/GlowView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/GlowView.xcscheme -------------------------------------------------------------------------------- /GlowView/GlowView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GlowView/GlowView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /GlowView/GlowView.xcodeproj/xcuserdata/YouXianMing1987@iCloud.com.xcuserdatad/xcschemes/GlowView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GlowView/GlowView.xcodeproj/xcuserdata/YouXianMing1987@iCloud.com.xcuserdatad/xcschemes/GlowView.xcscheme -------------------------------------------------------------------------------- /GlowView/GlowView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GlowView/GlowView/AppDelegate.h -------------------------------------------------------------------------------- /GlowView/GlowView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GlowView/GlowView/AppDelegate.m -------------------------------------------------------------------------------- /GlowView/GlowView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GlowView/GlowView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /GlowView/GlowView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GlowView/GlowView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GlowView/GlowView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GlowView/GlowView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GlowView/GlowView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GlowView/GlowView/Info.plist -------------------------------------------------------------------------------- /GlowView/GlowView/UIView+GlowView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GlowView/GlowView/UIView+GlowView.h -------------------------------------------------------------------------------- /GlowView/GlowView/UIView+GlowView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GlowView/GlowView/UIView+GlowView.m -------------------------------------------------------------------------------- /GlowView/GlowView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GlowView/GlowView/ViewController.h -------------------------------------------------------------------------------- /GlowView/GlowView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GlowView/GlowView/ViewController.m -------------------------------------------------------------------------------- /GlowView/GlowView/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GlowView/GlowView/demo.png -------------------------------------------------------------------------------- /GlowView/GlowView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GlowView/GlowView/main.m -------------------------------------------------------------------------------- /GradientColorView/GradientColorView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientColorView/GradientColorView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GradientColorView/GradientColorView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientColorView/GradientColorView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GradientColorView/GradientColorView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientColorView/GradientColorView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /GradientColorView/GradientColorView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientColorView/GradientColorView/AppDelegate.h -------------------------------------------------------------------------------- /GradientColorView/GradientColorView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientColorView/GradientColorView/AppDelegate.m -------------------------------------------------------------------------------- /GradientColorView/GradientColorView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientColorView/GradientColorView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GradientColorView/GradientColorView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientColorView/GradientColorView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /GradientColorView/GradientColorView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientColorView/GradientColorView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GradientColorView/GradientColorView/GradientColorView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientColorView/GradientColorView/GradientColorView.h -------------------------------------------------------------------------------- /GradientColorView/GradientColorView/GradientColorView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientColorView/GradientColorView/GradientColorView.m -------------------------------------------------------------------------------- /GradientColorView/GradientColorView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientColorView/GradientColorView/Info.plist -------------------------------------------------------------------------------- /GradientColorView/GradientColorView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientColorView/GradientColorView/ViewController.h -------------------------------------------------------------------------------- /GradientColorView/GradientColorView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientColorView/GradientColorView/ViewController.m -------------------------------------------------------------------------------- /GradientColorView/GradientColorView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientColorView/GradientColorView/main.m -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/GradientLayer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/GradientLayer.xcscheme -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer/AngleGradientLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer/AngleGradientLayer.h -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer/AngleGradientLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer/AngleGradientLayer.m -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer/AngleGradientView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer/AngleGradientView.h -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer/AngleGradientView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer/AngleGradientView.m -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer/AppDelegate.h -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer/AppDelegate.m -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer/CircleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer/CircleView.h -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer/CircleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer/CircleView.m -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer/Info.plist -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer/ViewController.h -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer/ViewController.m -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer/YXEasing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer/YXEasing.h -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer/YXEasing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer/YXEasing.m -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer/contents@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer/contents@2x.png -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer/easing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer/easing.c -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer/easing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer/easing.h -------------------------------------------------------------------------------- /GradientLayerView/GradientLayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/GradientLayerView/GradientLayer/main.m -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/AppDelegate.h -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/AppDelegate.m -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/mail.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/mail.imageset/Contents.json -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/mail.imageset/mail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/mail.imageset/mail@2x.png -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/mail.imageset/mail@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/mail.imageset/mail@3x.png -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/ok.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/ok.imageset/Contents.json -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/ok.imageset/ok@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/ok.imageset/ok@2x.png -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/ok.imageset/ok@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/ok.imageset/ok@3x.png -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/phone_orange.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/phone_orange.imageset/Contents.json -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/phone_orange.imageset/phone_orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/phone_orange.imageset/phone_orange@2x.png -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/phone_orange.imageset/phone_orange@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/phone_orange.imageset/phone_orange@3x.png -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/tag03.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/tag03.imageset/Contents.json -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/tag03.imageset/tag03@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/tag03.imageset/tag03@2x.png -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/tag03.imageset/tag03@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/Assets.xcassets/tag03.imageset/tag03@3x.png -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/HexColors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/HexColors.h -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/HexColors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/HexColors.m -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/IconEdgeInsetsLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/IconEdgeInsetsLabel.h -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/IconEdgeInsetsLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/IconEdgeInsetsLabel.m -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/Info.plist -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/UIView+SetRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/UIView+SetRect.h -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/UIView+SetRect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/UIView+SetRect.m -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/ViewController.h -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/ViewController.m -------------------------------------------------------------------------------- /IconEdgeInsetsLabel/IconEdgeInsetsLabel/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IconEdgeInsetsLabel/IconEdgeInsetsLabel/main.m -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/1.jpg -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/2.jpg -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/3.jpg -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/4.jpg -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/AppDelegate.h -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/AppDelegate.m -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/CustomIrregularGridViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/CustomIrregularGridViewCell.h -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/CustomIrregularGridViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/CustomIrregularGridViewCell.m -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/Info.plist -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/IrregularGridCellDataAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/IrregularGridCellDataAdapter.h -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/IrregularGridCellDataAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/IrregularGridCellDataAdapter.m -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/IrregularGridCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/IrregularGridCollectionView.h -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/IrregularGridCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/IrregularGridCollectionView.m -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/Math.h -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/Math.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/Math.m -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/MaximumSpacingFlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/MaximumSpacingFlowLayout.h -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/MaximumSpacingFlowLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/MaximumSpacingFlowLayout.m -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/PictureCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/PictureCell.h -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/PictureCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/PictureCell.m -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/RedButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/RedButtonCell.h -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/RedButtonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/RedButtonCell.m -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/UIView+SetRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/UIView+SetRect.h -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/UIView+SetRect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/UIView+SetRect.m -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/ViewController.h -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/ViewController.m -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/YellowButtonCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/YellowButtonCell.h -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/YellowButtonCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/YellowButtonCell.m -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/main.m -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/red_nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/red_nor@2x.png -------------------------------------------------------------------------------- /IrregularGridCollectionView/IrregularGridCollectionView/yellow_nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/IrregularGridCollectionView/IrregularGridCollectionView/yellow_nor@2x.png -------------------------------------------------------------------------------- /LineAnimationView/AnimationLine.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/LineAnimationView/AnimationLine.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LineAnimationView/AnimationLine.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/LineAnimationView/AnimationLine.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LineAnimationView/AnimationLine.xcodeproj/project.xcworkspace/xcshareddata/AnimationLine.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/LineAnimationView/AnimationLine.xcodeproj/project.xcworkspace/xcshareddata/AnimationLine.xccheckout -------------------------------------------------------------------------------- /LineAnimationView/AnimationLine.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/LineAnimationView/AnimationLine.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /LineAnimationView/AnimationLine.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/AnimationLine.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/LineAnimationView/AnimationLine.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/AnimationLine.xcscheme -------------------------------------------------------------------------------- /LineAnimationView/AnimationLine.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/LineAnimationView/AnimationLine.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LineAnimationView/AnimationLine/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/LineAnimationView/AnimationLine/AppDelegate.h -------------------------------------------------------------------------------- /LineAnimationView/AnimationLine/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/LineAnimationView/AnimationLine/AppDelegate.m -------------------------------------------------------------------------------- /LineAnimationView/AnimationLine/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/LineAnimationView/AnimationLine/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /LineAnimationView/AnimationLine/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/LineAnimationView/AnimationLine/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LineAnimationView/AnimationLine/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/LineAnimationView/AnimationLine/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LineAnimationView/AnimationLine/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/LineAnimationView/AnimationLine/Info.plist -------------------------------------------------------------------------------- /LineAnimationView/AnimationLine/LineAnimationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/LineAnimationView/AnimationLine/LineAnimationView.h -------------------------------------------------------------------------------- /LineAnimationView/AnimationLine/LineAnimationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/LineAnimationView/AnimationLine/LineAnimationView.m -------------------------------------------------------------------------------- /LineAnimationView/AnimationLine/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/LineAnimationView/AnimationLine/ViewController.h -------------------------------------------------------------------------------- /LineAnimationView/AnimationLine/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/LineAnimationView/AnimationLine/ViewController.m -------------------------------------------------------------------------------- /LineAnimationView/AnimationLine/demo2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/LineAnimationView/AnimationLine/demo2@2x.png -------------------------------------------------------------------------------- /LineAnimationView/AnimationLine/demo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/LineAnimationView/AnimationLine/demo@2x.png -------------------------------------------------------------------------------- /LineAnimationView/AnimationLine/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/LineAnimationView/AnimationLine/main.m -------------------------------------------------------------------------------- /POPNumberCount/POP.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /POPNumberCount/POP.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /POPNumberCount/POP.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/POP.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/POP.xcscheme -------------------------------------------------------------------------------- /POPNumberCount/POP.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /POPNumberCount/POP.xcodeproj/xcuserdata/YouXianMing1987@iCloud.com.xcuserdatad/xcschemes/POP.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP.xcodeproj/xcuserdata/YouXianMing1987@iCloud.com.xcuserdatad/xcschemes/POP.xcscheme -------------------------------------------------------------------------------- /POPNumberCount/POP/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/AppDelegate.h -------------------------------------------------------------------------------- /POPNumberCount/POP/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/AppDelegate.m -------------------------------------------------------------------------------- /POPNumberCount/POP/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /POPNumberCount/POP/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /POPNumberCount/POP/ConfigAttributedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/ConfigAttributedString.h -------------------------------------------------------------------------------- /POPNumberCount/POP/ConfigAttributedString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/ConfigAttributedString.m -------------------------------------------------------------------------------- /POPNumberCount/POP/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /POPNumberCount/POP/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/Info.plist -------------------------------------------------------------------------------- /POPNumberCount/POP/NSString+RichText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/NSString+RichText.h -------------------------------------------------------------------------------- /POPNumberCount/POP/NSString+RichText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/NSString+RichText.m -------------------------------------------------------------------------------- /POPNumberCount/POP/POP.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/POP.pch -------------------------------------------------------------------------------- /POPNumberCount/POP/POPNumberCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/POPNumberCount.h -------------------------------------------------------------------------------- /POPNumberCount/POP/POPNumberCount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/POPNumberCount.m -------------------------------------------------------------------------------- /POPNumberCount/POP/PercentCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/PercentCount.h -------------------------------------------------------------------------------- /POPNumberCount/POP/PercentCount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/PercentCount.m -------------------------------------------------------------------------------- /POPNumberCount/POP/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/ViewController.h -------------------------------------------------------------------------------- /POPNumberCount/POP/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/ViewController.m -------------------------------------------------------------------------------- /POPNumberCount/POP/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/main.m -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POP.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPAction.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPAnimatableProperty.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPAnimatableProperty.mm -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPAnimation.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPAnimation.mm -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPAnimationEvent.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPAnimationEvent.mm -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPAnimationExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPAnimationExtras.mm -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPAnimationRuntime.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPAnimationRuntime.mm -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPAnimationTracer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPAnimationTracer.mm -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPAnimator.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPAnimator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPAnimator.mm -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPBasicAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPBasicAnimation.mm -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPCGUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPCGUtils.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPCGUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPCGUtils.mm -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPCustomAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPCustomAnimation.mm -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPDecayAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPDecayAnimation.mm -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPDefines.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPGeometry.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPGeometry.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPGeometry.mm -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPLayerExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPLayerExtras.mm -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPMath.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPMath.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPMath.mm -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPPropertyAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPPropertyAnimation.mm -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPSpringAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPSpringAnimation.mm -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPVector.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/POPVector.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/POPVector.mm -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/WebCore/FloatConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/WebCore/TransformationMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/WebCore/TransformationMatrix.cpp -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/WebCore/TransformationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /POPNumberCount/POP/pop/WebCore/UnitBezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/POPNumberCount/POP/pop/WebCore/UnitBezier.h -------------------------------------------------------------------------------- /ParagraphString/ParagraphString.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ParagraphString/ParagraphString.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ParagraphString/ParagraphString/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString/AppDelegate.h -------------------------------------------------------------------------------- /ParagraphString/ParagraphString/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString/AppDelegate.m -------------------------------------------------------------------------------- /ParagraphString/ParagraphString/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ParagraphString/ParagraphString/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ParagraphString/ParagraphString/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ParagraphString/ParagraphString/BaseParagraphStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString/BaseParagraphStyle.h -------------------------------------------------------------------------------- /ParagraphString/ParagraphString/BaseParagraphStyle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString/BaseParagraphStyle.m -------------------------------------------------------------------------------- /ParagraphString/ParagraphString/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString/Info.plist -------------------------------------------------------------------------------- /ParagraphString/ParagraphString/InputMono-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString/InputMono-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /ParagraphString/ParagraphString/InputMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString/InputMono-Light.ttf -------------------------------------------------------------------------------- /ParagraphString/ParagraphString/NewsCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString/NewsCell.h -------------------------------------------------------------------------------- /ParagraphString/ParagraphString/NewsCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString/NewsCell.m -------------------------------------------------------------------------------- /ParagraphString/ParagraphString/NewsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString/NewsModel.h -------------------------------------------------------------------------------- /ParagraphString/ParagraphString/NewsModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString/NewsModel.m -------------------------------------------------------------------------------- /ParagraphString/ParagraphString/NormalStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString/NormalStyle.h -------------------------------------------------------------------------------- /ParagraphString/ParagraphString/NormalStyle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString/NormalStyle.m -------------------------------------------------------------------------------- /ParagraphString/ParagraphString/ParagraphString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString/ParagraphString.h -------------------------------------------------------------------------------- /ParagraphString/ParagraphString/ParagraphString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString/ParagraphString.m -------------------------------------------------------------------------------- /ParagraphString/ParagraphString/UIView+SetRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString/UIView+SetRect.h -------------------------------------------------------------------------------- /ParagraphString/ParagraphString/UIView+SetRect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString/UIView+SetRect.m -------------------------------------------------------------------------------- /ParagraphString/ParagraphString/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString/ViewController.h -------------------------------------------------------------------------------- /ParagraphString/ParagraphString/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString/ViewController.m -------------------------------------------------------------------------------- /ParagraphString/ParagraphString/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/ParagraphString/ParagraphString/main.m -------------------------------------------------------------------------------- /PlaceholderTextView/PlaceholderTextView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/PlaceholderTextView/PlaceholderTextView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PlaceholderTextView/PlaceholderTextView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/PlaceholderTextView/PlaceholderTextView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PlaceholderTextView/PlaceholderTextView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/PlaceholderTextView/PlaceholderTextView/AppDelegate.h -------------------------------------------------------------------------------- /PlaceholderTextView/PlaceholderTextView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/PlaceholderTextView/PlaceholderTextView/AppDelegate.m -------------------------------------------------------------------------------- /PlaceholderTextView/PlaceholderTextView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/PlaceholderTextView/PlaceholderTextView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PlaceholderTextView/PlaceholderTextView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/PlaceholderTextView/PlaceholderTextView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /PlaceholderTextView/PlaceholderTextView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/PlaceholderTextView/PlaceholderTextView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PlaceholderTextView/PlaceholderTextView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/PlaceholderTextView/PlaceholderTextView/Info.plist -------------------------------------------------------------------------------- /PlaceholderTextView/PlaceholderTextView/PlaceholderTextView+ConvenientSetup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/PlaceholderTextView/PlaceholderTextView/PlaceholderTextView+ConvenientSetup.h -------------------------------------------------------------------------------- /PlaceholderTextView/PlaceholderTextView/PlaceholderTextView+ConvenientSetup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/PlaceholderTextView/PlaceholderTextView/PlaceholderTextView+ConvenientSetup.m -------------------------------------------------------------------------------- /PlaceholderTextView/PlaceholderTextView/PlaceholderTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/PlaceholderTextView/PlaceholderTextView/PlaceholderTextView.h -------------------------------------------------------------------------------- /PlaceholderTextView/PlaceholderTextView/PlaceholderTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/PlaceholderTextView/PlaceholderTextView/PlaceholderTextView.m -------------------------------------------------------------------------------- /PlaceholderTextView/PlaceholderTextView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/PlaceholderTextView/PlaceholderTextView/ViewController.h -------------------------------------------------------------------------------- /PlaceholderTextView/PlaceholderTextView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/PlaceholderTextView/PlaceholderTextView/ViewController.m -------------------------------------------------------------------------------- /PlaceholderTextView/PlaceholderTextView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/PlaceholderTextView/PlaceholderTextView/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/README.md -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/1.png -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/AppDelegate.h -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/AppDelegate.m -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/ImageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/ImageCell.h -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/ImageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/ImageCell.m -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/Info.plist -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/PlaceholderImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/PlaceholderImageView.h -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/PlaceholderImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/PlaceholderImageView.m -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/MKAnnotationView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/MKAnnotationView+WebCache.h -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/MKAnnotationView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/MKAnnotationView+WebCache.m -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/NSData+ImageContentType.m -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImageDecoder.m -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIImage+WebP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIImage+WebP.h -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIImage+WebP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIImage+WebP.m -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIImageView+HighlightedWebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIImageView+HighlightedWebCache.m -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/SDWebImage/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/ViewController.h -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/ViewController.m -------------------------------------------------------------------------------- /SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/SDWebImageViewPlaceHorder/SDWebImageViewPlaceHorder/main.m -------------------------------------------------------------------------------- /Special-Effect-Cell/TableView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Special-Effect-Cell/TableView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Special-Effect-Cell/TableView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Special-Effect-Cell/TableView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Special-Effect-Cell/TableView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/TableView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Special-Effect-Cell/TableView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/TableView.xcscheme -------------------------------------------------------------------------------- /Special-Effect-Cell/TableView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Special-Effect-Cell/TableView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Special-Effect-Cell/TableView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Special-Effect-Cell/TableView/AppDelegate.h -------------------------------------------------------------------------------- /Special-Effect-Cell/TableView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Special-Effect-Cell/TableView/AppDelegate.m -------------------------------------------------------------------------------- /Special-Effect-Cell/TableView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Special-Effect-Cell/TableView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Special-Effect-Cell/TableView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Special-Effect-Cell/TableView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Special-Effect-Cell/TableView/DataCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Special-Effect-Cell/TableView/DataCell.h -------------------------------------------------------------------------------- /Special-Effect-Cell/TableView/DataCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Special-Effect-Cell/TableView/DataCell.m -------------------------------------------------------------------------------- /Special-Effect-Cell/TableView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Special-Effect-Cell/TableView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Special-Effect-Cell/TableView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Special-Effect-Cell/TableView/Info.plist -------------------------------------------------------------------------------- /Special-Effect-Cell/TableView/UIView+SetRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Special-Effect-Cell/TableView/UIView+SetRect.h -------------------------------------------------------------------------------- /Special-Effect-Cell/TableView/UIView+SetRect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Special-Effect-Cell/TableView/UIView+SetRect.m -------------------------------------------------------------------------------- /Special-Effect-Cell/TableView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Special-Effect-Cell/TableView/ViewController.h -------------------------------------------------------------------------------- /Special-Effect-Cell/TableView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Special-Effect-Cell/TableView/ViewController.m -------------------------------------------------------------------------------- /Special-Effect-Cell/TableView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Special-Effect-Cell/TableView/main.m -------------------------------------------------------------------------------- /Swift-EasingAnimation/Swift-EasingAnimation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Swift-EasingAnimation/Swift-EasingAnimation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Swift-EasingAnimation/Swift-EasingAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Swift-EasingAnimation/Swift-EasingAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Swift-EasingAnimation/Swift-EasingAnimation/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Swift-EasingAnimation/Swift-EasingAnimation/AppDelegate.swift -------------------------------------------------------------------------------- /Swift-EasingAnimation/Swift-EasingAnimation/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Swift-EasingAnimation/Swift-EasingAnimation/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Swift-EasingAnimation/Swift-EasingAnimation/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Swift-EasingAnimation/Swift-EasingAnimation/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Swift-EasingAnimation/Swift-EasingAnimation/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Swift-EasingAnimation/Swift-EasingAnimation/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Swift-EasingAnimation/Swift-EasingAnimation/ComplexEasingValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Swift-EasingAnimation/Swift-EasingAnimation/ComplexEasingValue.swift -------------------------------------------------------------------------------- /Swift-EasingAnimation/Swift-EasingAnimation/Easing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Swift-EasingAnimation/Swift-EasingAnimation/Easing.swift -------------------------------------------------------------------------------- /Swift-EasingAnimation/Swift-EasingAnimation/EasingValue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Swift-EasingAnimation/Swift-EasingAnimation/EasingValue.swift -------------------------------------------------------------------------------- /Swift-EasingAnimation/Swift-EasingAnimation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Swift-EasingAnimation/Swift-EasingAnimation/Info.plist -------------------------------------------------------------------------------- /Swift-EasingAnimation/Swift-EasingAnimation/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/Swift-EasingAnimation/Swift-EasingAnimation/ViewController.swift -------------------------------------------------------------------------------- /TTTAttributeLabelView/TapLabelView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TTTAttributeLabelView/TapLabelView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TTTAttributeLabelView/TapLabelView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TTTAttributeLabelView/TapLabelView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TTTAttributeLabelView/TapLabelView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/TapLabelView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TTTAttributeLabelView/TapLabelView.xcodeproj/xcuserdata/YouXianMing.xcuserdatad/xcschemes/TapLabelView.xcscheme -------------------------------------------------------------------------------- /TTTAttributeLabelView/TapLabelView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TTTAttributeLabelView/TapLabelView/AppDelegate.h -------------------------------------------------------------------------------- /TTTAttributeLabelView/TapLabelView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TTTAttributeLabelView/TapLabelView/AppDelegate.m -------------------------------------------------------------------------------- /TTTAttributeLabelView/TapLabelView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TTTAttributeLabelView/TapLabelView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /TTTAttributeLabelView/TapLabelView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TTTAttributeLabelView/TapLabelView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TTTAttributeLabelView/TapLabelView/ConfigAttributedString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TTTAttributeLabelView/TapLabelView/ConfigAttributedString.h -------------------------------------------------------------------------------- /TTTAttributeLabelView/TapLabelView/ConfigAttributedString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TTTAttributeLabelView/TapLabelView/ConfigAttributedString.m -------------------------------------------------------------------------------- /TTTAttributeLabelView/TapLabelView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TTTAttributeLabelView/TapLabelView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TTTAttributeLabelView/TapLabelView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TTTAttributeLabelView/TapLabelView/Info.plist -------------------------------------------------------------------------------- /TTTAttributeLabelView/TapLabelView/NSString+RichText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TTTAttributeLabelView/TapLabelView/NSString+RichText.h -------------------------------------------------------------------------------- /TTTAttributeLabelView/TapLabelView/NSString+RichText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TTTAttributeLabelView/TapLabelView/NSString+RichText.m -------------------------------------------------------------------------------- /TTTAttributeLabelView/TapLabelView/TTTAttributedLabel/TTTAttributeLabelView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TTTAttributeLabelView/TapLabelView/TTTAttributedLabel/TTTAttributeLabelView.h -------------------------------------------------------------------------------- /TTTAttributeLabelView/TapLabelView/TTTAttributedLabel/TTTAttributeLabelView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TTTAttributeLabelView/TapLabelView/TTTAttributedLabel/TTTAttributeLabelView.m -------------------------------------------------------------------------------- /TTTAttributeLabelView/TapLabelView/TTTAttributedLabel/TTTAttributedLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TTTAttributeLabelView/TapLabelView/TTTAttributedLabel/TTTAttributedLabel.h -------------------------------------------------------------------------------- /TTTAttributeLabelView/TapLabelView/TTTAttributedLabel/TTTAttributedLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TTTAttributeLabelView/TapLabelView/TTTAttributedLabel/TTTAttributedLabel.m -------------------------------------------------------------------------------- /TTTAttributeLabelView/TapLabelView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TTTAttributeLabelView/TapLabelView/ViewController.h -------------------------------------------------------------------------------- /TTTAttributeLabelView/TapLabelView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TTTAttributeLabelView/TapLabelView/ViewController.m -------------------------------------------------------------------------------- /TTTAttributeLabelView/TapLabelView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TTTAttributeLabelView/TapLabelView/main.m -------------------------------------------------------------------------------- /TransformationFadeView/TransformationFadeView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TransformationFadeView/TransformationFadeView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TransformationFadeView/TransformationFadeView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TransformationFadeView/TransformationFadeView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TransformationFadeView/TransformationFadeView/1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TransformationFadeView/TransformationFadeView/1@2x.png -------------------------------------------------------------------------------- /TransformationFadeView/TransformationFadeView/2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TransformationFadeView/TransformationFadeView/2@2x.png -------------------------------------------------------------------------------- /TransformationFadeView/TransformationFadeView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TransformationFadeView/TransformationFadeView/AppDelegate.h -------------------------------------------------------------------------------- /TransformationFadeView/TransformationFadeView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TransformationFadeView/TransformationFadeView/AppDelegate.m -------------------------------------------------------------------------------- /TransformationFadeView/TransformationFadeView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TransformationFadeView/TransformationFadeView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /TransformationFadeView/TransformationFadeView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TransformationFadeView/TransformationFadeView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TransformationFadeView/TransformationFadeView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TransformationFadeView/TransformationFadeView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TransformationFadeView/TransformationFadeView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TransformationFadeView/TransformationFadeView/Info.plist -------------------------------------------------------------------------------- /TransformationFadeView/TransformationFadeView/TranformFadeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TransformationFadeView/TransformationFadeView/TranformFadeView.h -------------------------------------------------------------------------------- /TransformationFadeView/TransformationFadeView/TranformFadeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TransformationFadeView/TransformationFadeView/TranformFadeView.m -------------------------------------------------------------------------------- /TransformationFadeView/TransformationFadeView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TransformationFadeView/TransformationFadeView/ViewController.h -------------------------------------------------------------------------------- /TransformationFadeView/TransformationFadeView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TransformationFadeView/TransformationFadeView/ViewController.m -------------------------------------------------------------------------------- /TransformationFadeView/TransformationFadeView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/TransformationFadeView/TransformationFadeView/main.m -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/AbsTextFieldViewValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/AbsTextFieldViewValidator.h -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/AbsTextFieldViewValidator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/AbsTextFieldViewValidator.m -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/AccessViewTagProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/AccessViewTagProtocol.h -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/AppDelegate.h -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/AppDelegate.m -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/Info.plist -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/PasswordValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/PasswordValidator.h -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/PasswordValidator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/PasswordValidator.m -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/PhoneValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/PhoneValidator.h -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/PhoneValidator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/PhoneValidator.m -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/TextFieldValidatorMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/TextFieldValidatorMessage.h -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/TextFieldValidatorMessage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/TextFieldValidatorMessage.m -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/TouchEventView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/TouchEventView.h -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/TouchEventView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/TouchEventView.m -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/UIAlertAction+Constructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/UIAlertAction+Constructor.h -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/UIAlertAction+Constructor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/UIAlertAction+Constructor.m -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/UIAlertController+Constructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/UIAlertController+Constructor.h -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/UIAlertController+Constructor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/UIAlertController+Constructor.m -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/UITextFieldView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/UITextFieldView.h -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/UITextFieldView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/UITextFieldView.m -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/UIView+SetRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/UIView+SetRect.h -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/UIView+SetRect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/UIView+SetRect.m -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/ViewController.h -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/ViewController.m -------------------------------------------------------------------------------- /UITextFieldView/UITextFieldView/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YouXianMing/UI-Component-Collection/HEAD/UITextFieldView/UITextFieldView/main.m --------------------------------------------------------------------------------