bbum posted an outline of how to do this, but I'm unable to complete the details. Where does the Python code go, and how will my Objective-C code know about it? How would I do it compiling on the command line?
|
Source here: Calling Python From Objective-C I have posted a full explanation of how to do this to my weblog as it is quite a bit longer than something I would post here. The abstract summary remains the same: use an abstract class to provide the type information necessary to make the C compiler happy and the metadata necessary to make the bridge happy. |
|||||
|
|
Unfortunately the story for using Python via PyObjC from within an Objective-C app is not very good at the moment. PyObjC manipulates the Objective-C runtime in accordance with the ObjC-related code executed in Python, thus to be able to call python code from Objective-C, the general outline goes like
If you have flexibility, the best option is to use the Cocoa-Python app templates (i.e. create a Python app), and then load your Objective-C code as a loadable bundle from within Python. This takes care of managing the Python interpreter for you. Otherwise, with the code in Keep in mind that PyObjC is not guaranteed to play well with the Objective-C garbage collector, so all of these options require that your Objective-C code not use GC. |
|||
|
|
|
Google is your friend. Performing a search on the string "Cocoa Python" quickly turned up PyObjc. |
|||||||||||||||
|