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