NSKVOSupport: Send message to metaclass using msgSend

This commit is contained in:
Hugo Melder 2024-12-13 22:16:49 +01:00
parent 85fdf53829
commit 35c7188b7a

View file

@ -720,7 +720,10 @@ static void *s_kvoObservationInfoAssociationKey; // has no value; pointer used
free(selectorName);
}
return ((NSSet *(*)(id, SEL))objc_msgSend)(self, sel);
if ([self respondsToSelector:sel])
{
return ((NSSet *(*)(id, SEL))objc_msgSend)(self, sel);
}
}
return emptySet;
}