(iphone) CGImageRef NSObject 吗? c 指针?
我想将 CGImageRef 变量传递给 PerformSelectorOnMainThread
用 valueWithPointer 将其包装在 NSValue 中就足够了吗?
CGImageRef 的类型是什么?
它是c指针的typedef吗?
谢谢
I'd like to pass CGImageRef variable to performSelectorOnMainThread
wrapping it inside NSValue with valueWithPointer is adequate here?
What's the type of CGImageRef?
Is it a typedef of c pointer?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CGImageRef
是指向CGImage
c-struct 的指针。对于您的情况,只需将其转换为 id 类型就足够了:CGImageRef
is a pointer toCGImage
c-struct. For your case just casting it to id type must suffice: