Rightpoint / RZDataBinding

Lightweight KVO-based data binding options.
Other
543 stars 57 forks source link

NSInvocation Fix #9

Closed jvisenti closed 9 years ago

jvisenti commented 9 years ago

It turns out NSInvocation is generally unsafe for sending messages with object arguments, and should almost never be used for such. PR #8 switched over to using NSInvocation instead of storing target/action pairs separately. Now, NSInvocation will still store the target, action, and method signature, but will no longer be invoked to send the message.