第一个回调函数成功执行.但是voID *指针在第二个回调函数中变为nil.请注意,我没有在第一个回调中调整指针但仍然在第二次回调中得到nil.
什么想法可能会出错?
例如:
kr = IOServiceAddMatchingNotification(gNotifyPort,kIOFirstMatchNotification,matchingDict,RawDeviceAdded,NulL,&gRawAddedIter);RawDeviceAdded(NulL,gRawAddedIter,self);
这很好用.但是下面的函数接收自己为零.
kr = IOServiceAddMatchingNotification(gNotifyPort,BulkTestDeviceAdded,&gBulkTestAddedIter);BulkTestDeviceAdded(NulL,gBulkTestAddedIter,self);解决方法 您的问题是否特别与IOKit回调例程有关?你给出的具体例子的问题是IOServiceMatchingCallback只需要2个参数,而不是3.你需要你的RawDeviceAdded()和BulkTestDeviceAdded()回调函数来匹配IOServiceMatchingCallback原型并接受self作为第一个参数(refCon),而不是第三个.此外,您需要传入self作为IOServiceAddMatchingNotification()的倒数第二个参数,以便通过回调将其传递给您.
在Objective-C代码中处理C回调的常用方法就是使用一个静态函数将回调转发给您的实例.因此,您的示例回调代码如下所示:
static RawDeviceAdded(voID* refcon,io_iterator_t iterator){ [(MyClass*)refcon rawDeviceAdded:iterator];}@implementation MyClass- (voID)setupCallbacks{ // ... all preceding setup snipped kr = IOServiceAddMatchingNotification(gNotifyPort,(voID*)self,&gRawAddedIter ); // call the callback method once to 'arm' the iterator [self rawDeviceAdded:gRawAddedIterator];}- (voID)rawDeviceAdded:(io_iterator_t)iterator{ // take care of the iterator here,making sure to complete iteration to re-arm it}@end总结
以上是内存溢出为你收集整理的objective-c – 处理回调全部内容,希望文章能够帮你解决objective-c – 处理回调所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)