I've looked for this everywhere and I can't find a solution...
My Goal: I'm trying to edit a label in my storyboard without creating an outlet specifically for that label (I have 36 labels).
Problem: I tried this basic line of code that I found on another Stack Overflow question, but it didn't succeed and I got an error...
UILabel *label = (UILabel *)[self viewWithTag:71];
Error: No visible @interface for 'ViewControllerTwo' declares the selector 'viewWithTag:'
Any help will be appreciated...
IBOutletCollectionand connect all the labels up to that and then you essentially just work with an array of labels – Paul.s Apr 15 '12 at 0:19