AliSoftware / AliSoftware/KeyPathObserver

Inheritence support

Aperta
#1 1 commento 0 reazioni 0 assegnatari Vedi su GitHub
Lingua principale
Objective-C
Stelle
5
Fork
2
Metriche di merge delle PR
Nessuna PR unita negli ultimi 30g

Descrizione

If you observe a given keyPath in a class A, and observe the very same keyPath in a subclass B of the class A, the block set in class B will override the one in class A.

It won't be possible to call the superclass observer block when you override it in a subclass.

_Note that the standard Apple KVO mechanism has the same issue_

**Possible Fix:** associating to the keyPath not directly the blocks to execute but an NSMutableDictionary that holds the blocks for each class in the object's class hierarchy should solve the problem. When trying to call the block, we will search blocks by going bottom to top in the class hierarchy, thus calling the blocks associated with the current class, then its superclass if any, then its supersuperclass, and so on.

Guida per i contributori

Nessuna guida per i contributori indicizzata per questo repository

Valutazione

Questa issue non è ancora stata valutata.

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.