├── .gitignore ├── CRNInitialsImageView.xcodeproj └── project.pbxproj ├── CRNInitialsImageView ├── CRNInitialsImageView.h └── CRNInitialsImageView.m ├── Example ├── AppDelegate.h ├── AppDelegate.m ├── CRNInitialsImageView-Info.plist ├── CRNInitialsImageView-Prefix.pch ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── ViewController.h ├── ViewController.m ├── en.lproj │ └── InfoPlist.strings └── main.m ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ge0ff/CRNInitialsImageView/HEAD/.gitignore -------------------------------------------------------------------------------- /CRNInitialsImageView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ge0ff/CRNInitialsImageView/HEAD/CRNInitialsImageView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CRNInitialsImageView/CRNInitialsImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ge0ff/CRNInitialsImageView/HEAD/CRNInitialsImageView/CRNInitialsImageView.h -------------------------------------------------------------------------------- /CRNInitialsImageView/CRNInitialsImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ge0ff/CRNInitialsImageView/HEAD/CRNInitialsImageView/CRNInitialsImageView.m -------------------------------------------------------------------------------- /Example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ge0ff/CRNInitialsImageView/HEAD/Example/AppDelegate.h -------------------------------------------------------------------------------- /Example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ge0ff/CRNInitialsImageView/HEAD/Example/AppDelegate.m -------------------------------------------------------------------------------- /Example/CRNInitialsImageView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ge0ff/CRNInitialsImageView/HEAD/Example/CRNInitialsImageView-Info.plist -------------------------------------------------------------------------------- /Example/CRNInitialsImageView-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ge0ff/CRNInitialsImageView/HEAD/Example/CRNInitialsImageView-Prefix.pch -------------------------------------------------------------------------------- /Example/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ge0ff/CRNInitialsImageView/HEAD/Example/Default-568h@2x.png -------------------------------------------------------------------------------- /Example/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ge0ff/CRNInitialsImageView/HEAD/Example/Default.png -------------------------------------------------------------------------------- /Example/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ge0ff/CRNInitialsImageView/HEAD/Example/Default@2x.png -------------------------------------------------------------------------------- /Example/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ge0ff/CRNInitialsImageView/HEAD/Example/ViewController.h -------------------------------------------------------------------------------- /Example/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ge0ff/CRNInitialsImageView/HEAD/Example/ViewController.m -------------------------------------------------------------------------------- /Example/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ge0ff/CRNInitialsImageView/HEAD/Example/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ge0ff/CRNInitialsImageView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ge0ff/CRNInitialsImageView/HEAD/README.md --------------------------------------------------------------------------------