Coming from Android I am new to iOS development and need advice :-)
In a current project I need to print variable content (product, map and cam-picture) in high resolution in duplex mode via airprint. The structure and layout (of the pages) is delivered via JSON-File.
Is there a decent way to generate a "layout-framework" to separate the displayed views/content on screen and the content to be printed as I do not need the high resolution for display purposes? Any projects dealing with similar approaches to start from someone can advice? Any kind of "JSON to layout/structure parser"?
Is it in general possible to print duplex high-resolution content maybe even borderless if the printer supports this mode? Could not find an answer here: ...developer.apple.com/library/ios/documentation/2DDrawing/Conceptual/DrawingPrintingiOS/Printing/Printing.html
What is the smartest way to render the print content? Rendering a second high resolution "print-view" offscreen or generate a pdf and print that? This I found this.
How would I airprint with swift given the requirements can be addressed? A good starter I found here.