Search code examples
iphoneobjective-cxcodeios4xcode4

Moving a NSString to a UIView from a different class


I currently have two classes. Class A has my UIView attached to it. My second Class, Class B has some other functions that works in the background. I have one function that ends up with a string. Is there a easy way to move that string from Class B to Class A that has the UIView.


Solution

  • Sure -- just make sure that the instance of B has a reference to the instance of A that you want to pass the string to.

    Rule: Any time you want one object, say foo, to be able to communicate directly with another object, bar, then foo needs a pointer to bar.

    Communication between objects isn't always direct -- some other object (or objects) may act as intermediaries. That doesn't change the rule above; indirect communication is just a sequence of direct communications. If foo uses a notification to communicate with bar, foo needs a pointer to the notification center, and the notification center needs a pointer to bar.