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 am creating UITableView cells dynamically and adding three labels on to it.I made my table as transparent by opaque no and clearcolor. But the cells are being shown without spaces.I need to give space between cells. Actually if i load a custom UITableViewCell from the xib file the space comes automatically. How to solve this issue?

share|improve this question
what do u mean dynamically ? – IronManGill Sep 20 '12 at 9:31
are you creating UITableView and using its delegate methods to create cells? – AppleDelegate Sep 20 '12 at 9:33
Tableview i added through IB.cell is created using cellforrowatindexpath – priyanka vijesh Sep 20 '12 at 9:34
increase your rowHeight – Rajneesh071 Sep 20 '12 at 9:39
row hight is dynamic – priyanka vijesh Sep 20 '12 at 10:02
show 1 more comment

3 Answers

In UITableView you have 2 properties : separatorStyle and separatorColor. Use them maybe your separator color is clearcolor so try and change it.

share|improve this answer
i cannot use like this because i have a background image for tableview i need to show that image between cells. – priyanka vijesh Sep 20 '12 at 9:40
You need to show the image between the cells meaning there is a whole background for the UITableViewCell or is it that each cell has its own specific background ? – IronManGill Sep 20 '12 at 9:43
Add number of row 1 in one section and number of sections as the number of elements in your array .... – IronManGill Sep 20 '12 at 9:46
i need to give background for cell..every cell is having same background.In result i should get a cell with background yellow inside that three labels and then a space then another cell of same kind. – priyanka vijesh Sep 20 '12 at 9:49

This problem is due to the difference in height in TableView and Custom cell. Set the cell height in heightForRowAtIndexPath delegate.

share|improve this answer
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return yourCellHeight;
}
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.