このコードをobjective-cでどのように書くべきですか?
kr = IOServiceAddMatchingNotification(gNotifyPort,
kIOFirstMatchNotification, matchingDict, RawDeviceAdded, NULL, &gRawAddedIter);
私はこれを試しました:
kr = IOServiceAddMatchingNotification(gNotifyPort, kIOFirstMatchNotification,
matchingDict, @selector(RawDeviceAdded), NULL, &gRawAddedIter);
関数は次のようになります。
(void)RawDeviceAdded:(void *)refCon iterator:(io_iterator_t)iterator
{
.....
}
その権利かどうかはわかりません。