1

I need to make something that is shown in the picture below. I thought that I should use table view section but there are two problems here:

  1. the table view will scroll but I want It to be fix!
  2. I want to use checkmark box just like the picture

The example

Saeed Rahmatolahi
  • 1,317
  • 2
  • 27
  • 60
  • Drag a UIView onto the UITableView in storyboard as HeaderView, it won't scroll and will be fixed there. – iphonic Feb 15 '17 at 09:46
  • go with `tableview` set scrolling disabled, use custom `UITableViewCell` class to add checkmark – Gokul G Feb 15 '17 at 09:49

1 Answers1

0

If what you want is the SECTION to be fixed but allowing the table view to have scroll, all you have to do is in the interface builder, set the table view style as grouped

enter image description here

Joan Cardona
  • 3,463
  • 2
  • 25
  • 43