├── ClearTextLabel.podspec ├── ClearTextLabel ├── ClearTextLabel.h └── ClearTextLabel.m ├── Example ├── CTLabelDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── CTLabelDemo.xccheckout │ │ └── xcuserdata │ │ │ └── taruntyagi.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── taruntyagi.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── CTLabelDemo.xcscheme │ │ └── xcschememanagement.plist ├── CTLabelDemo │ ├── Base.lproj │ │ └── Main.storyboard │ ├── CTLDAppDelegate.h │ ├── CTLDAppDelegate.m │ ├── CTLDViewController.h │ ├── CTLDViewController.m │ ├── CTLabelDemo-Info.plist │ ├── CTLabelDemo-Prefix.pch │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── bg.jpg │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m └── CTLabelDemoTests │ ├── CTLabelDemoTests-Info.plist │ ├── CTLabelDemoTests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE.md ├── README.md └── Screenshot.png /ClearTextLabel.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/ClearTextLabel.podspec -------------------------------------------------------------------------------- /ClearTextLabel/ClearTextLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/ClearTextLabel/ClearTextLabel.h -------------------------------------------------------------------------------- /ClearTextLabel/ClearTextLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/ClearTextLabel/ClearTextLabel.m -------------------------------------------------------------------------------- /Example/CTLabelDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/Example/CTLabelDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/CTLabelDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/Example/CTLabelDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/CTLabelDemo.xcodeproj/project.xcworkspace/xcshareddata/CTLabelDemo.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/Example/CTLabelDemo.xcodeproj/project.xcworkspace/xcshareddata/CTLabelDemo.xccheckout -------------------------------------------------------------------------------- /Example/CTLabelDemo.xcodeproj/project.xcworkspace/xcuserdata/taruntyagi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/Example/CTLabelDemo.xcodeproj/project.xcworkspace/xcuserdata/taruntyagi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/CTLabelDemo.xcodeproj/xcuserdata/taruntyagi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/Example/CTLabelDemo.xcodeproj/xcuserdata/taruntyagi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Example/CTLabelDemo.xcodeproj/xcuserdata/taruntyagi.xcuserdatad/xcschemes/CTLabelDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/Example/CTLabelDemo.xcodeproj/xcuserdata/taruntyagi.xcuserdatad/xcschemes/CTLabelDemo.xcscheme -------------------------------------------------------------------------------- /Example/CTLabelDemo.xcodeproj/xcuserdata/taruntyagi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/Example/CTLabelDemo.xcodeproj/xcuserdata/taruntyagi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/CTLabelDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/Example/CTLabelDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/CTLabelDemo/CTLDAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/Example/CTLabelDemo/CTLDAppDelegate.h -------------------------------------------------------------------------------- /Example/CTLabelDemo/CTLDAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/Example/CTLabelDemo/CTLDAppDelegate.m -------------------------------------------------------------------------------- /Example/CTLabelDemo/CTLDViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/Example/CTLabelDemo/CTLDViewController.h -------------------------------------------------------------------------------- /Example/CTLabelDemo/CTLDViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/Example/CTLabelDemo/CTLDViewController.m -------------------------------------------------------------------------------- /Example/CTLabelDemo/CTLabelDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/Example/CTLabelDemo/CTLabelDemo-Info.plist -------------------------------------------------------------------------------- /Example/CTLabelDemo/CTLabelDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/Example/CTLabelDemo/CTLabelDemo-Prefix.pch -------------------------------------------------------------------------------- /Example/CTLabelDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/Example/CTLabelDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/CTLabelDemo/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/Example/CTLabelDemo/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/CTLabelDemo/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/Example/CTLabelDemo/bg.jpg -------------------------------------------------------------------------------- /Example/CTLabelDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/CTLabelDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/Example/CTLabelDemo/main.m -------------------------------------------------------------------------------- /Example/CTLabelDemoTests/CTLabelDemoTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/Example/CTLabelDemoTests/CTLabelDemoTests-Info.plist -------------------------------------------------------------------------------- /Example/CTLabelDemoTests/CTLabelDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/Example/CTLabelDemoTests/CTLabelDemoTests.m -------------------------------------------------------------------------------- /Example/CTLabelDemoTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taruntyagi697/ClearTextLabel/HEAD/Screenshot.png --------------------------------------------------------------------------------