I’m trying to use SAXy OX on OS X 10.9. A couple issues I have run into:
- After converting to OSX project with ARC, testBuilderPattern fails. This is because the OXmlMapper is only weakly held by OXmlReader, so when you don’t hold an external reference, it is deleted immediately. Not sure why this doesn’t fail on iOS.
- testScalarEncodingScheme in OXTransformTests.m also fails, because
@encode(long) is “q” and @encode(unsigned long) is “Q” on 64-bit OSX, not “l” and “L”.
- Using the same OXmlMapper in an OXmlWriter before OXmlReader causes the OXmlReader to return nil. If you do the writing before doing the reading in e.g. testXMLMappingMadeSimple, the test fails.