1

I have a tableView with custom tableViewCells that are 42 high. For some reason the separator lines are not appearing. It acts as if it is a normal tableView i.e. i can scroll and delete cells, but the separator lines are just not there.

Does anybody know why?

Thanks

Kyle Rosenbluth
  • 1,672
  • 4
  • 22
  • 38

1 Answers1

5

You nees to set SeparatorStyle of the teble like:

mtable.separatorStyle= UITableViewCellSeparatorStyleSingleLine;

Hope this will help u out.This has worked for me.