gpt4 book ai didi

objective-c - ARC 不允许将 Objective-C 指针隐式转换为 'void *'

转载 作者:太空狗 更新时间:2023-10-30 03:08:55 24 4
gpt4 key购买 nike

这是什么意思,我有什么选择?

implicit conversion of an Objective-C pointer to 'void *' is disallowed with ARC

我正在将一个 Xcode3 项目移植到 iOS5,它像这样使用 AudioSessionInitialize

AudioSessionInitialize(NULL, NULL, NULL, self);

这里的 self 是一个 ViewController。

最佳答案

您应该为此使用 __bridge cast。

AudioSessionInitialize(NULL, NULL, NULL, (__bridge void *)self);

关于objective-c - ARC 不允许将 Objective-C 指针隐式转换为 'void *',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6868130/

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