├── LICENCE ├── README ├── XmlReader.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── XmlReader.xccheckout │ └── xcuserdata │ │ └── benoit.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── benoit.xcuserdatad │ └── xcschemes │ ├── XmlReader.xcscheme │ └── xcschememanagement.plist ├── XmlReader ├── XmlReader-Prefix.pch ├── XmlReader.h └── XmlReader.m └── XmlReaderTests ├── XmlReaderTests-Info.plist ├── XmlReaderTests.m └── en.lproj └── InfoPlist.strings /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcaccinolo/XML-to-NSDictionary/HEAD/LICENCE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XmlReader.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcaccinolo/XML-to-NSDictionary/HEAD/XmlReader.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /XmlReader.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcaccinolo/XML-to-NSDictionary/HEAD/XmlReader.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /XmlReader.xcodeproj/project.xcworkspace/xcshareddata/XmlReader.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcaccinolo/XML-to-NSDictionary/HEAD/XmlReader.xcodeproj/project.xcworkspace/xcshareddata/XmlReader.xccheckout -------------------------------------------------------------------------------- /XmlReader.xcodeproj/project.xcworkspace/xcuserdata/benoit.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcaccinolo/XML-to-NSDictionary/HEAD/XmlReader.xcodeproj/project.xcworkspace/xcuserdata/benoit.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /XmlReader.xcodeproj/xcuserdata/benoit.xcuserdatad/xcschemes/XmlReader.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcaccinolo/XML-to-NSDictionary/HEAD/XmlReader.xcodeproj/xcuserdata/benoit.xcuserdatad/xcschemes/XmlReader.xcscheme -------------------------------------------------------------------------------- /XmlReader.xcodeproj/xcuserdata/benoit.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcaccinolo/XML-to-NSDictionary/HEAD/XmlReader.xcodeproj/xcuserdata/benoit.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /XmlReader/XmlReader-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcaccinolo/XML-to-NSDictionary/HEAD/XmlReader/XmlReader-Prefix.pch -------------------------------------------------------------------------------- /XmlReader/XmlReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcaccinolo/XML-to-NSDictionary/HEAD/XmlReader/XmlReader.h -------------------------------------------------------------------------------- /XmlReader/XmlReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcaccinolo/XML-to-NSDictionary/HEAD/XmlReader/XmlReader.m -------------------------------------------------------------------------------- /XmlReaderTests/XmlReaderTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcaccinolo/XML-to-NSDictionary/HEAD/XmlReaderTests/XmlReaderTests-Info.plist -------------------------------------------------------------------------------- /XmlReaderTests/XmlReaderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcaccinolo/XML-to-NSDictionary/HEAD/XmlReaderTests/XmlReaderTests.m -------------------------------------------------------------------------------- /XmlReaderTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | --------------------------------------------------------------------------------