I have a class along the lines of:
@interface Foo : NSObject {
NSMutableArray *bar;
}
Foo isn't a controller -- it's responsible for some other logic that I want encapsulated.
I'd like to have a label display the size of bar. If it was a value in a controller, I could simply make it an IBOutlet, connect it in IB, and everything would just work.
Can I do that with bar above?