gpt4 book ai didi

python - 无法调用 pyObjC 中对象的方法

转载 作者:行者123 更新时间:2023-11-30 23:41:18 28 4
gpt4 key购买 nike

当我在 pyObjC 代码中调用 setDelegate_ 时,我收到 AttributeError: 'tuple' object has no attribute 'setDelegate_'

我的代码如下所示:

def createMovie(self):
attribs = NSMutableDictionary.dictionary()
attribs['QTMovieFileNameAttribute'] = '<My Filename>'
movie = QTMovie.alloc().initWithAttributes_error_(attribs, objc.nil)
movie.setDelegate_(self)

编辑

我发现我无法对电影对象使用任何实例方法。

最佳答案

选择器“initWithAttributes:error:”在 Objective-C 中有两个参数,其中第二个是引用传递输出参数。 Python 没有按引用传递参数,因此 PyObjC 返回该值作为第二个返回值,这就是此选择器的 python 包装器返回元组的原因。这是一种通用机制,也可与具有按引用传递参数的其他方法一起使用。

在 Objective-C 中:

QTMovie* movie;
NSError* error = nil;

movie = [[QTMovie alloc] initWithAttributes: attribs error:&error]
if (movie == nil) {
// do something with error
}

在Python中:

movie, error = QTMovie.alloc().initWithAttributes_error_(attribs, None)
if movie is None:
# do something with error

关于python - 无法调用 pyObjC 中对象的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12131709/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com