Newbie wants to create a PDF reader for ipod touch - what's the best approach?

后端 未结 5 1734
北海茫月
北海茫月 2020-12-09 22:34

I want to make a small app that displays a PDF, presenting zoom-able single pages with a previous-next page function.

5条回答
  •  隐瞒了意图╮
    2020-12-09 23:13

    The Core Graphics API is pretty much the same in Cocoa and Cocoa touch. Read up on CGPDFDocument, it should provide you with everything you will need to render PDF pages. You won't need to read the PDF spec or use a library to parse PDF files directly. You will probably to learn more about Core Graphics / Quartz 2D / etc. to understand how to use those functions inside of a Cocoa app.

提交回复
热议问题