I\'ve added a number of labels to a view using Interface Builder. I\'ve also got an array of values I want to display.
Is there a better way to set the labels than u
You can use self.view.subviews array to go through all subviews and check if it is UILabel, do your things.