在PyObjC中使用python函数回调?

时间:2010-07-05 14:46:23

标签: python objective-c cocoa segmentation-fault pyobjc

我正在尝试使用Python制作的Objective-C类来执行此操作,但Objective-C无法调用调用python函数的方法。

这是Objective-C代码的框架代码:

//
//  scalelib.h
//  Scalelib Cocoa Framework
//
//  Created by Matthew Mitchell on 04/07/2010.
//  Copyright 2010 __MyCompanyName__. All rights reserved.
//

#import <Cocoa/Cocoa.h>


@interface Game : NSObject {
    id current_pyfunc;
}
-(void) addPyFunc: (id) pyfunc;
-(void) callPyFunc;
@end

//
//  scalelib.m
//  Scalelib Cocoa Framework
//
//  Created by Matthew Mitchell on 04/07/2010.
//  Copyright 2010 __MyCompanyName__. All rights reserved.
//

#import "Game.h"


@implementation Game
-(void) addPyFunc: (id) pyfunc{
    current_pyfunc = pyfunc;
}
-(void) callPyFunc{
    [current_pyfunc call]; //Segmentation fault. Method doesn't exist for some reason.
}
@end

这是python脚本,它加载框架并测试失败回调的使用。

#!/usr/bin/env python2.3
from objc import *
import os,sys
loadBundle("Scalelib Cocoa Framework",globals(),os.path.dirname(sys.argv[0]) + "/Scalelib Cocoa Framework/build/Release/Scalelib Cocoa Framework.framework/")
class PythonCallback(NSObject):
    def setCallback_withArgs_(self, python_function,args): #Python initialisation of class, add the callback function and arguments
        self.python_function = python_function
        self.args = args
        return self
    def call(self): #Used by Objective-C to call python function
        self.python_function(*self.args)
def create_callback(function,args):
    return PythonCallback.alloc().init().setCallback_withArgs_(function,args)
def square(num):
    print num**2
instance = Game.alloc().init()
callback = create_callback(square,[3])
callback.call()
instance.addPyFunc_(create_callback(square,[5]))
instance.callPyFunc()

我得到了输出:

9 分段错误

分段错误是因为python中的调用方法显然不存在。那么如何让它存在于Objective-C?

即使代码确实有效,也没用,但我现在只测试一下。一旦我有回调工作,我就能够为python创建我的库。

感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

我的猜测是保留计数。

您不会保留传递给addPyFunc _

的create_callback()的结果

因此,在你打电话之前,可能会收集垃圾。