tags:

views:

49

answers:

1

I want more space(10px) between each cell.How can i do this?

And i have added this code

tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

Thanks in advance

A: 

I don't think it's possible using standard API. I guess you would need to subclass the UITableViewCell and add a view that simulates a separator at the bottom of the cell.

You may want to check this question, it seems related and has some sample code: http://stackoverflow.com/questions/2227420/iphone-uitableview-place-an-image-for-separator

Estarriol