Is it possible to dynamically build a property or function call? I have a set of views I want to render in the same manner. So if part of my code is like this
self.ViewName.hidden = NO;
and I want to use a variable for the name of the view, is there a way to do it, something like
self{var}.hidden = NO;
Where 'var' is a NSString of the view name and evaluated at runtime? I know this won't work with the angle brackets, just to give of how I am trying to build the property reference.
Thanks