Assume I have ten lines of code,
1
2
[addressStreet setStringValue:street]
4
5
6
7
8
9
10
where addressStreet is a IBOutlet pointing to text field in UI and street is a NSString object.
Only after all the 10 lines are executed I could see the updated value in UI. My requirement is that the value should get reflected in UI immediately after line No 3 is executed and even before next line (No 4) is executed.
Tried with bindings too! Negative.
Is there a way that I can achieve this?
Thanx in advance!