I am need to parse a pdf file. I would like to use objective-c and Cocoa classes to do so, but I need the resulting application to run on Linux. Is this possible? My experience to Objective-C revolves around the iPhone so I'm relatively new to Cocoa. Thanks.

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

Cocoa is Mac and iPhone only, but you could use GNUstep, which is based off the same OpenStep Objective-C API as Cocoa, and PopplerKit for PDF reading.

link|improve this answer
feedback

In addition to GNUstep, there's Cocotron which cross-compiles from Xcode running on a Mac. If you can develop on Xcode, then it's an option.

link|improve this answer
Isn't Cocotron mainly focused on Windows, though? – Chuck Apr 6 '10 at 17:04
@Chuck that's its primary focus, but it's got runtime support for Linux and Slowlaris, too. – Graham Lee Apr 7 '10 at 8:02
feedback

No, Cocoa is specific to Mac. You can use Objective C on Linux, but I doubt there's much library support. You might have better luck finding a PDF parser for Linux (ghostscript might have libraries) that also works on Mac.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.