├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── TTCountryFlagLabel.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── TTCountryFlagLabel-Example.xcscheme ├── TTCountryFlagLabel.xcworkspace │ └── contents.xcworkspacedata ├── TTCountryFlagLabel │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Main.storyboard │ ├── TTAppDelegate.h │ ├── TTAppDelegate.m │ ├── TTCountryCell.h │ ├── TTCountryCell.m │ ├── TTCountryFlagLabel-Info.plist │ ├── TTCountryFlagLabel-Prefix.pch │ ├── TTTableViewFlagsViewController.h │ ├── TTTableViewFlagsViewController.m │ ├── TTViewController.h │ ├── TTViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── README.md ├── TTCountryFlagLabel.podspec ├── TTCountryFlagLabel ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── TTCountryFlagLabel.h │ └── TTCountryFlagLabel.m └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/TTCountryFlagLabel.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/Example/TTCountryFlagLabel.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/TTCountryFlagLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/Example/TTCountryFlagLabel.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/TTCountryFlagLabel.xcodeproj/xcshareddata/xcschemes/TTCountryFlagLabel-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/Example/TTCountryFlagLabel.xcodeproj/xcshareddata/xcschemes/TTCountryFlagLabel-Example.xcscheme -------------------------------------------------------------------------------- /Example/TTCountryFlagLabel.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/Example/TTCountryFlagLabel.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/TTCountryFlagLabel/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/Example/TTCountryFlagLabel/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/TTCountryFlagLabel/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/Example/TTCountryFlagLabel/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/TTCountryFlagLabel/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/Example/TTCountryFlagLabel/Main.storyboard -------------------------------------------------------------------------------- /Example/TTCountryFlagLabel/TTAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/Example/TTCountryFlagLabel/TTAppDelegate.h -------------------------------------------------------------------------------- /Example/TTCountryFlagLabel/TTAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/Example/TTCountryFlagLabel/TTAppDelegate.m -------------------------------------------------------------------------------- /Example/TTCountryFlagLabel/TTCountryCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/Example/TTCountryFlagLabel/TTCountryCell.h -------------------------------------------------------------------------------- /Example/TTCountryFlagLabel/TTCountryCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/Example/TTCountryFlagLabel/TTCountryCell.m -------------------------------------------------------------------------------- /Example/TTCountryFlagLabel/TTCountryFlagLabel-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/Example/TTCountryFlagLabel/TTCountryFlagLabel-Info.plist -------------------------------------------------------------------------------- /Example/TTCountryFlagLabel/TTCountryFlagLabel-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/Example/TTCountryFlagLabel/TTCountryFlagLabel-Prefix.pch -------------------------------------------------------------------------------- /Example/TTCountryFlagLabel/TTTableViewFlagsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/Example/TTCountryFlagLabel/TTTableViewFlagsViewController.h -------------------------------------------------------------------------------- /Example/TTCountryFlagLabel/TTTableViewFlagsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/Example/TTCountryFlagLabel/TTTableViewFlagsViewController.m -------------------------------------------------------------------------------- /Example/TTCountryFlagLabel/TTViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/Example/TTCountryFlagLabel/TTViewController.h -------------------------------------------------------------------------------- /Example/TTCountryFlagLabel/TTViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/Example/TTCountryFlagLabel/TTViewController.m -------------------------------------------------------------------------------- /Example/TTCountryFlagLabel/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/TTCountryFlagLabel/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/Example/TTCountryFlagLabel/main.m -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/README.md -------------------------------------------------------------------------------- /TTCountryFlagLabel.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/TTCountryFlagLabel.podspec -------------------------------------------------------------------------------- /TTCountryFlagLabel/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TTCountryFlagLabel/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TTCountryFlagLabel/Classes/TTCountryFlagLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/TTCountryFlagLabel/Classes/TTCountryFlagLabel.h -------------------------------------------------------------------------------- /TTCountryFlagLabel/Classes/TTCountryFlagLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhiraj/TTCountryFlagLabel/HEAD/TTCountryFlagLabel/Classes/TTCountryFlagLabel.m -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------