Reputation: 1607
I would like to develop a reader app for viewing and manipulating proprietary format documents. The documents are 2D. (Might add some cool page flip effects) The interface is similar to that of mobile safari. I'm trying to decide whether to write this in Quartz2D or OpenGL ES. I have no prior experience with either of those. Any suggestions?
Upvotes: 0
Views: 129
Reputation: 64428
I can't imagine a text centric app that would be much enhanced by OpenGL unless you want to draw text on the side of cube or something.
Upvotes: 0
Reputation: 18122
If you have no prior experience then Quartz2D would be much easier to learn than OpenGL. And for a reader app, OpenGL is most likely overkill anyways, unless you need to do really heavy rendering.
Upvotes: 1