You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{
items = {
four = 4;
one = {
"@id" = 1;
text = 1;
};
three = {
"@id" = 3;
text = 3;
};
two = {
some = (
Test,
Test2
);
};
};
}
New XMLReader output:
{
items = {
four = {
text = 4;
};
one = {
id = 1;
text = 1;
};
three = {
id = 3;
text = 3;
};
two = {
some = (
{
text = Test;
},
{
text = Test2;
}
);
};
};
}
The text was updated successfully, but these errors were encountered:
I assume that you have figured out a solution to your problem.
Nevertheless, could you explain me what was the "old XMLReader" you were referring to?
I've looked through the commits and kXMLReaderAttributePrefix has never been used in this repository. I cannot explain how you got the "@" prefix for XML attributes.
Can I get result dictionary like on old version of XMLReader?
NSString *xmlString = @"<items><one id=\"1\">1</one><two><some>Test</some><some>Test2</some></two><three id=\"3\">3</three><four>4</four></items>";
Old XMLReader output
New XMLReader output:
The text was updated successfully, but these errors were encountered: