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 want conjoined email & password textfields like so -

enter image description here

See how both the fields are nicely rounded & the background color is blue.

The way I have implemented this is to create a custom tableViewCell with a label and a text field in a grouped table view probably with a single section and two rows one of which is for username and other for password.

What I have got is below. I have come close to implementing this but I am getting a weird grey background. How do I get rid of this grey background?

enter image description here

share|improve this question

3 Answers

up vote 10 down vote accepted

I think to remove gray background u should do one thing

tableView.backgroundColor = [UIColor clearColor]; in view did load

or if above code doesn't work try this.

tableView.backgroundView = nil;
share|improve this answer
2  
tableView.backgroundView = nil; did the trick. – Srikar Appal Dec 15 '11 at 16:56
tableView.backgroundColor = [UIColor clearColor];

If you are using Interface Builder make sure you setup and connect your outlet for the tableView

You may want to call this method in viewDidLoad:

share|improve this answer

I accomplish this with two lines:

self.tableView.backgroundColor = [UIColor clearColor];
self.tableView.backgroundView = nil;

Depending on the opacity you want you can also make sure of this:

self.tableView.opaque = NO;
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.