我有一个像这样的 objc 方法;
@ implementation of Class1
- (void)execute:(void (^)(Class2* target, NSUInteger idx))block
{
...
}
我想在 python 中使用这个执行方法,我已经构建了一个 python Objective-c 桥数据,它似乎正确生成为:
<class name='Class1'>
<method selector='execute:'>
<arg function_pointer='true' type='@?' index='0'>
<arg type='@'/>
<arg type='I' type64='Q'/>
<retval type='v'/>
</arg>
</method>
但是当我定义这样的函数时:
def myFunc (dev, index):
// do something with dev
print("Hello")
并尝试将其用作块
class1_obj.execute_(myFunc)
Python 抛出错误:
objc.BadPrototypeError: Objective-C expects 1 arguments, Python argument has 2 arguments for <unbound selector myFunc at 0x105b3a3f0>
我也试过用 lambda 函数,没用。
我还尝试创建一个可调用类:
>>> class myCallable(object):
... def __init__(self,name):
... print "Init"
... def __repr__(self):
... return "string init"
... def __call__(self, dev, index):
... # do something with dev
... print("hello")
但是python会抛出这样的错误:
TypeError: Sorry, cannot create IMP for instances of type myCallable
我想知道我在这里做错了什么?