├── RCLabel ├── RCLabel.xcodeproj │ └── project.pbxproj └── RCLabel │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── RCAppDelegate.h │ ├── RCAppDelegate.m │ ├── RCLabel-Info.plist │ ├── RCLabel-Prefix.pch │ ├── RCLabel.h │ ├── RCLabel.m │ ├── RCViewCell.h │ ├── RCViewCell.m │ ├── RCViewController.h │ ├── RCViewController.m │ ├── RegexKitLite.h │ ├── RegexKitLite.m │ ├── ThumbNail.ashx.jpeg │ ├── chrome.jpg │ ├── en.lproj │ ├── InfoPlist.strings │ └── RCViewController.xib │ ├── firefox.jpg │ ├── ie.jpg │ ├── main.m │ ├── safari.png │ ├── tokyo.gif │ └── wine.jpeg ├── README.md └── RichContentLabel.png /RCLabel/RCLabel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RCLabel/RCLabel/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/Default-568h@2x.png -------------------------------------------------------------------------------- /RCLabel/RCLabel/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/Default.png -------------------------------------------------------------------------------- /RCLabel/RCLabel/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/Default@2x.png -------------------------------------------------------------------------------- /RCLabel/RCLabel/RCAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/RCAppDelegate.h -------------------------------------------------------------------------------- /RCLabel/RCLabel/RCAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/RCAppDelegate.m -------------------------------------------------------------------------------- /RCLabel/RCLabel/RCLabel-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/RCLabel-Info.plist -------------------------------------------------------------------------------- /RCLabel/RCLabel/RCLabel-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/RCLabel-Prefix.pch -------------------------------------------------------------------------------- /RCLabel/RCLabel/RCLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/RCLabel.h -------------------------------------------------------------------------------- /RCLabel/RCLabel/RCLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/RCLabel.m -------------------------------------------------------------------------------- /RCLabel/RCLabel/RCViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/RCViewCell.h -------------------------------------------------------------------------------- /RCLabel/RCLabel/RCViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/RCViewCell.m -------------------------------------------------------------------------------- /RCLabel/RCLabel/RCViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/RCViewController.h -------------------------------------------------------------------------------- /RCLabel/RCLabel/RCViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/RCViewController.m -------------------------------------------------------------------------------- /RCLabel/RCLabel/RegexKitLite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/RegexKitLite.h -------------------------------------------------------------------------------- /RCLabel/RCLabel/RegexKitLite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/RegexKitLite.m -------------------------------------------------------------------------------- /RCLabel/RCLabel/ThumbNail.ashx.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/ThumbNail.ashx.jpeg -------------------------------------------------------------------------------- /RCLabel/RCLabel/chrome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/chrome.jpg -------------------------------------------------------------------------------- /RCLabel/RCLabel/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /RCLabel/RCLabel/en.lproj/RCViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/en.lproj/RCViewController.xib -------------------------------------------------------------------------------- /RCLabel/RCLabel/firefox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/firefox.jpg -------------------------------------------------------------------------------- /RCLabel/RCLabel/ie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/ie.jpg -------------------------------------------------------------------------------- /RCLabel/RCLabel/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/main.m -------------------------------------------------------------------------------- /RCLabel/RCLabel/safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/safari.png -------------------------------------------------------------------------------- /RCLabel/RCLabel/tokyo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/tokyo.gif -------------------------------------------------------------------------------- /RCLabel/RCLabel/wine.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RCLabel/RCLabel/wine.jpeg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/README.md -------------------------------------------------------------------------------- /RichContentLabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Janak-Nirmal/RichContentLabel/HEAD/RichContentLabel.png --------------------------------------------------------------------------------