我可以将 boost::bind() 转换为 Objective C 函数吗?
我不知道这是否可能,但如果可以,语法会是什么样子?
如果不可能,为什么不呢?
I have no idea if this is possible, but if it is, what would the syntax look like?
If not possible, why not?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够绑定到消息实现 (
IMP
),它们只是带有两个隐藏参数的普通 C 函数:self
和_cmd
分别输入id
和SEL
。编辑:刚刚测试了以下完整示例,它似乎可以工作。
使用 GNUstep,编译为:
在 Mac OS X 上,编译为:
输出:
You should be able to bind to a message implementation (
IMP
), which are just plain C functions with two hidden parameters,self
and_cmd
of typesid
andSEL
respectively.EDIT: Just tested the following complete example, and it appears to work.
With GNUstep, compile as:
On Mac OS X, compile as:
Output: