iOS - XML Pretty Print
问题 I am using GDataXML in my iOS application and want a simple way to format and print an XML string - "pretty print" Does anyone know of an algorithm in Objective C, or one that works in another language I can translate? 回答1: I've used HTML Tidy (http://tidy.sourceforge.net/) for things like this. It's a C library so can be linked in to and called from an Objective C runtime fairly easily as long as you're comfortable with C. The C++ API is callable from Objective C++ so that might be easier to