I have a view that was created with all of the default UITableView stuff, but now I need to add a header area above where the UITableView is (so th
UITableView
You will have to embed the UITableView in a UIView alongwith another view (which you are referring to as header section).
UIView
So, the UIView will have 2 subviews. The header view followed by the table view.
Hope this helps.