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 have to change the elements marked in the pictures. How would I do that!

It is navigationBar and navigation element probably.

enter image description here

enter image description here

share|improve this question
The second part is solved. – Vova Stajilov Aug 24 '11 at 9:56

1 Answer

up vote 2 down vote accepted

Your root view controller for the master view controller is a UINavigationController, this is what gives the grey navigation bar.

Use the navigationBar property of the navigation controller to modify the visual appearance.

Use navigationBarHidden on the navigation controller to hide it all together. Or simply skip the navigation controller wrapper and set the table view directly as the master controller on your split view controller.

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.