Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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...

share|improve this question
Why don't you want to create an outlet again? – Paul.s Apr 15 '12 at 0:17
Because I would rather just reference each label by a tag rather than creating outlets for each label. – The Man Apr 15 '12 at 0:19
Sounds like a bad design to me. Use an IBOutletCollection and 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

3 Answers

up vote 3 down vote accepted

Change your code to

                                    |
                                    v
UILabel *label = (UILabel *)[self.view viewWithTag:71];

UIViewController does not have viewWithTag:, UIView does

share|improve this answer
Thanks! That worked! – The Man Apr 15 '12 at 0:27
Click the outline of a tick to accept the answer then. – jrtc27 Apr 15 '12 at 7:52

viewwithTag is a method on UIView not on UIViewController. You'll probably have to call it like this:

UILabel *label = (UILabel *)[self.view viewWithTag:71];
share|improve this answer

Try using self.view:

UILabel *label = (UILabel *)[self.view viewWithTag:71];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.