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…
Change your code to
UIViewControllerdoes not haveviewWithTag:,UIViewdoes