├── .gitignore ├── README.md ├── Screenshot └── YLLabel.png ├── YLLabelDemo.xcodeproj └── project.pbxproj └── YLLabelDemo ├── .DS_Store ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── YLAppDelegate.h ├── YLAppDelegate.m ├── YLLabel ├── YLLabel.h └── YLLabel.m ├── YLLabelDemo-Info.plist ├── YLLabelDemo-Prefix.pch ├── YLViewController.h ├── YLViewController.m ├── en.lproj ├── InfoPlist.strings └── YLViewController_iPhone.xib └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanlizbyy/YLLabel/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanlizbyy/YLLabel/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot/YLLabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanlizbyy/YLLabel/HEAD/Screenshot/YLLabel.png -------------------------------------------------------------------------------- /YLLabelDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanlizbyy/YLLabel/HEAD/YLLabelDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YLLabelDemo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanlizbyy/YLLabel/HEAD/YLLabelDemo/.DS_Store -------------------------------------------------------------------------------- /YLLabelDemo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanlizbyy/YLLabel/HEAD/YLLabelDemo/Default-568h@2x.png -------------------------------------------------------------------------------- /YLLabelDemo/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanlizbyy/YLLabel/HEAD/YLLabelDemo/Default.png -------------------------------------------------------------------------------- /YLLabelDemo/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanlizbyy/YLLabel/HEAD/YLLabelDemo/Default@2x.png -------------------------------------------------------------------------------- /YLLabelDemo/YLAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanlizbyy/YLLabel/HEAD/YLLabelDemo/YLAppDelegate.h -------------------------------------------------------------------------------- /YLLabelDemo/YLAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanlizbyy/YLLabel/HEAD/YLLabelDemo/YLAppDelegate.m -------------------------------------------------------------------------------- /YLLabelDemo/YLLabel/YLLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanlizbyy/YLLabel/HEAD/YLLabelDemo/YLLabel/YLLabel.h -------------------------------------------------------------------------------- /YLLabelDemo/YLLabel/YLLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanlizbyy/YLLabel/HEAD/YLLabelDemo/YLLabel/YLLabel.m -------------------------------------------------------------------------------- /YLLabelDemo/YLLabelDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanlizbyy/YLLabel/HEAD/YLLabelDemo/YLLabelDemo-Info.plist -------------------------------------------------------------------------------- /YLLabelDemo/YLLabelDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanlizbyy/YLLabel/HEAD/YLLabelDemo/YLLabelDemo-Prefix.pch -------------------------------------------------------------------------------- /YLLabelDemo/YLViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanlizbyy/YLLabel/HEAD/YLLabelDemo/YLViewController.h -------------------------------------------------------------------------------- /YLLabelDemo/YLViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanlizbyy/YLLabel/HEAD/YLLabelDemo/YLViewController.m -------------------------------------------------------------------------------- /YLLabelDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /YLLabelDemo/en.lproj/YLViewController_iPhone.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanlizbyy/YLLabel/HEAD/YLLabelDemo/en.lproj/YLViewController_iPhone.xib -------------------------------------------------------------------------------- /YLLabelDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanlizbyy/YLLabel/HEAD/YLLabelDemo/main.m --------------------------------------------------------------------------------