I have an UITableViewController. My cell instead of this:
But I want that the cell is like this:
In the second image, the line does not reach the edge of the screen and below the photo line does not appear.
How can I do this?
Thank you!!
I have an UITableViewController. My cell instead of this:
But I want that the cell is like this:
In the second image, the line does not reach the edge of the screen and below the photo line does not appear.
How can I do this?
Thank you!!
You can hide border with :
cell.separatorInset = UIEdgeInsetsMake(0.f, cell.bounds.size.width, 0.f, 0.0f);
and create a line under text
UIEdgeInsetsMake(0.f, 60.0f, 0.f, 0.0f);