Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working with white text (labels) in xcode, and currently I can't see them because the background of storyboard is also white. How do I change the appearance of the storyboard?

To clarify, I do not want my text to change color, I only want to change the appearance of the storyboard so that I can develop easier.

share|improve this question
Do you mean the background of the viewcontroller? You can set this using the inspector. – Ben Clayton May 15 '12 at 14:02

2 Answers

up vote 5 down vote accepted

if you speak about the White in your viewController :

  • Select the View
  • Go to inspector (right panel, 4th item)
  • change the background Color field (section View)
share|improve this answer
Thanks...That's exactly what I needed – Nosrettap May 15 '12 at 14:06

I'm not sure you can do what you're trying to achieve. My best advice to you would be to create a dark coloured UIView which you can place behind the UILabel. Once you're happy you've got the UILabel setup the way you want it you can then just delete the UIView.

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.