├── LICENCE.md ├── README.md ├── Tests ├── XMLTest.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── XMLTest │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Default-568h@2x.png │ ├── ViewController.h │ ├── ViewController.m │ ├── XMLTest-Info.plist │ ├── XMLTest-Prefix.pch │ ├── en.lproj │ ├── InfoPlist.strings │ └── ViewController.xib │ └── main.m ├── XMLDictionary.podspec.json └── XMLDictionary ├── XMLDictionary.h └── XMLDictionary.m /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/XMLDictionary/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/XMLDictionary/HEAD/README.md -------------------------------------------------------------------------------- /Tests/XMLTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/XMLDictionary/HEAD/Tests/XMLTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tests/XMLTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/XMLDictionary/HEAD/Tests/XMLTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Tests/XMLTest/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/XMLDictionary/HEAD/Tests/XMLTest/AppDelegate.h -------------------------------------------------------------------------------- /Tests/XMLTest/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/XMLDictionary/HEAD/Tests/XMLTest/AppDelegate.m -------------------------------------------------------------------------------- /Tests/XMLTest/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/XMLDictionary/HEAD/Tests/XMLTest/Default-568h@2x.png -------------------------------------------------------------------------------- /Tests/XMLTest/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/XMLDictionary/HEAD/Tests/XMLTest/ViewController.h -------------------------------------------------------------------------------- /Tests/XMLTest/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/XMLDictionary/HEAD/Tests/XMLTest/ViewController.m -------------------------------------------------------------------------------- /Tests/XMLTest/XMLTest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/XMLDictionary/HEAD/Tests/XMLTest/XMLTest-Info.plist -------------------------------------------------------------------------------- /Tests/XMLTest/XMLTest-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/XMLDictionary/HEAD/Tests/XMLTest/XMLTest-Prefix.pch -------------------------------------------------------------------------------- /Tests/XMLTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Tests/XMLTest/en.lproj/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/XMLDictionary/HEAD/Tests/XMLTest/en.lproj/ViewController.xib -------------------------------------------------------------------------------- /Tests/XMLTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/XMLDictionary/HEAD/Tests/XMLTest/main.m -------------------------------------------------------------------------------- /XMLDictionary.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/XMLDictionary/HEAD/XMLDictionary.podspec.json -------------------------------------------------------------------------------- /XMLDictionary/XMLDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/XMLDictionary/HEAD/XMLDictionary/XMLDictionary.h -------------------------------------------------------------------------------- /XMLDictionary/XMLDictionary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklockwood/XMLDictionary/HEAD/XMLDictionary/XMLDictionary.m --------------------------------------------------------------------------------