aClass.aString = @"A";
self.aLabel.text = aClass.aString;
If I change aClass.aString to "B", also want self.aLabel.text change to "B" automatically.
How it works?
Is there a strong link exist that I can built between aClass.aString and self.aLabel.text? I knew that there some way to do this in objective-c, delegate and KVO, but it get a lot stuff to do, it's there some easy way?