├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── CHANGELOG.md ├── Example ├── RQShineLabelDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── RQShineLabelDemo │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── wallpaper1.imageset │ │ ├── Contents.json │ │ └── wallpaper1.png │ └── wallpaper2.imageset │ │ ├── Contents.json │ │ └── wallpaper2.png │ ├── Main.storyboard │ ├── RQAppDelegate.h │ ├── RQAppDelegate.m │ ├── RQShineLabelDemo-Info.plist │ ├── RQShineLabelDemo-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── LICENSE ├── Package.swift ├── README.md ├── RQShineLabel.podspec ├── Rakefile ├── Screenshots ├── 1.png ├── 2.png └── rqshinelabel.gif └── Sources ├── RQShineLabel.h ├── RQShineLabel.m └── include └── RQShineLabel └── RQShineLabel.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # RQShineLabl CHANGELOG 2 | 3 | ## 0.1.0 4 | 5 | Initial release. 6 | -------------------------------------------------------------------------------- /Example/RQShineLabelDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Example/RQShineLabelDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/RQShineLabelDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Example/RQShineLabelDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/RQShineLabelDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Example/RQShineLabelDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/RQShineLabelDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Example/RQShineLabelDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/RQShineLabelDemo/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Example/RQShineLabelDemo/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/RQShineLabelDemo/Images.xcassets/wallpaper1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Example/RQShineLabelDemo/Images.xcassets/wallpaper1.imageset/Contents.json -------------------------------------------------------------------------------- /Example/RQShineLabelDemo/Images.xcassets/wallpaper1.imageset/wallpaper1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Example/RQShineLabelDemo/Images.xcassets/wallpaper1.imageset/wallpaper1.png -------------------------------------------------------------------------------- /Example/RQShineLabelDemo/Images.xcassets/wallpaper2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Example/RQShineLabelDemo/Images.xcassets/wallpaper2.imageset/Contents.json -------------------------------------------------------------------------------- /Example/RQShineLabelDemo/Images.xcassets/wallpaper2.imageset/wallpaper2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Example/RQShineLabelDemo/Images.xcassets/wallpaper2.imageset/wallpaper2.png -------------------------------------------------------------------------------- /Example/RQShineLabelDemo/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Example/RQShineLabelDemo/Main.storyboard -------------------------------------------------------------------------------- /Example/RQShineLabelDemo/RQAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Example/RQShineLabelDemo/RQAppDelegate.h -------------------------------------------------------------------------------- /Example/RQShineLabelDemo/RQAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Example/RQShineLabelDemo/RQAppDelegate.m -------------------------------------------------------------------------------- /Example/RQShineLabelDemo/RQShineLabelDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Example/RQShineLabelDemo/RQShineLabelDemo-Info.plist -------------------------------------------------------------------------------- /Example/RQShineLabelDemo/RQShineLabelDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Example/RQShineLabelDemo/RQShineLabelDemo-Prefix.pch -------------------------------------------------------------------------------- /Example/RQShineLabelDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Example/RQShineLabelDemo/ViewController.h -------------------------------------------------------------------------------- /Example/RQShineLabelDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Example/RQShineLabelDemo/ViewController.m -------------------------------------------------------------------------------- /Example/RQShineLabelDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Example/RQShineLabelDemo/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/README.md -------------------------------------------------------------------------------- /RQShineLabel.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/RQShineLabel.podspec -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Rakefile -------------------------------------------------------------------------------- /Screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Screenshots/1.png -------------------------------------------------------------------------------- /Screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Screenshots/2.png -------------------------------------------------------------------------------- /Screenshots/rqshinelabel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Screenshots/rqshinelabel.gif -------------------------------------------------------------------------------- /Sources/RQShineLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Sources/RQShineLabel.h -------------------------------------------------------------------------------- /Sources/RQShineLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipme/RQShineLabel/HEAD/Sources/RQShineLabel.m -------------------------------------------------------------------------------- /Sources/include/RQShineLabel/RQShineLabel.h: -------------------------------------------------------------------------------- 1 | ../../RQShineLabel.h --------------------------------------------------------------------------------