2

iOSでPythonスクリプトを実行したい。アプリケーション全体を Python でほんの一部だけ書きたいわけではありません。

PyObjC を理解しようとしましたが、それほど簡単ではありません。

例を教えてください。NSString次のメソッドの結果を変数に保存したいと思います。

def doSomething():
   someInfos = "test"
   return someInfos
4

1 に答える 1

9

で定義された関数を呼び出す例を次に示しmyModuleます。同等の python は次のようになります。

import myModule
pValue = myModule.doSomething()
print pValue

Objective-c では:

#include <Python.h>

- (void)example {

    PyObject *pName, *pModule, *pDict, *pFunc, *pArgs, *pValue;
    NSString *nsString;

    // Initialize the Python Interpreter
    Py_Initialize();

    // Build the name object
    pName = PyString_FromString("myModule");

    // Load the module object
    pModule = PyImport_Import(pName);

    // pDict is a borrowed reference 
    pDict = PyModule_GetDict(pModule);

    // pFunc is also a borrowed reference 
    pFunc = PyDict_GetItemString(pDict, "doSomething");

    if (PyCallable_Check(pFunc)) {
        pValue = PyObject_CallObject(pFunc, NULL);
        if (pValue != NULL) {
            if (PyObject_IsInstance(pValue, (PyObject *)&PyUnicode_Type)) {
                    nsString = [NSString stringWithCharacters:((PyUnicodeObject *)pValue)->str length:((PyUnicodeObject *) pValue)->length];
            } else if (PyObject_IsInstance(pValue, (PyObject *)&PyBytes_Type)) {
                    nsString = [NSString stringWithUTF8String:((PyBytesObject *)pValue)->ob_sval];
            } else {
                    /* Handle a return value that is neither a PyUnicode_Type nor a PyBytes_Type */
            }
            Py_XDECREF(pValue);
        } else {
            PyErr_Print();
        }
    } else {
        PyErr_Print();
    }

    // Clean up
    Py_XDECREF(pModule);
    Py_XDECREF(pName);

    // Finish the Python Interpreter
    Py_Finalize();

    NSLog(@"%@", nsString);
}

より多くのドキュメントについては、Python インタープリターの拡張と埋め込みをご覧ください。

于 2012-07-10T20:37:24.157 に答える