Aside from Webviews, are there any text layout frameworks on iOS for custom views?
OpenGL could work fine aswell as something UIView-based.
Think Metro UI-ish, and I’d really enjoy templates and some sort of adaptive capabilities for landscape, portrait, ipad vs iphone, etc.
CoreText.framework would be a good starting point. It’s a ‘Core’ framework, which integrates well with CoreGraphics. If you want UIView-centric rendering, prepare to write some wrappers.
A high level alternative to CoreText.framework would be to use
NSAttributedStringinUITextViews (ios6 or greater).Here’s the high level overview: