I think it could be useful to have a shortcut added to Objective-C which combines a keyword value observer relationship with an automatic assignment on value change.
It could be noted syntactically using a new assignment operator (=> in my example below): SomeObject *foo = [SomeObject new];
AnotherObject *bar = [AnotherObject new];
bar.property => foo.changingProperty; The goal would be to [...]Tagi: automatic assignment, assignment operator, objective c, foo