Kingalione
Kingalione

Reputation: 4265

uitableview increase space between tableview and sectionindex

I want to increase the spacing between the tableview and the section-index like in this picture:

enter image description here

How can I achieve this without any dirty hacks because the rows are selectable and getting a checkmark if selected, so any empty view hacks will not work correctly because the checkmarks.

This is how it looks like now:

enter image description here

Upvotes: 0

Views: 218

Answers (1)

iphonic
iphonic

Reputation: 12719

You need to customize your design a bit by adding an extra Container UIView into the cell which will add virtual gap from the right of the cell, and keep the cell transparent. See below in the image

Storyboard Design enter image description here

Outcome

enter image description here

Hope it helps.

Cheers.

Upvotes: 1

Related Questions