Basically, I want to make something similar as Apple did with the Wi-Fi Networks settings on the iPad. Seemingly, there are static cells to turn WiFi on or off and a toggle to ask to join networks, and a dynamic part which shows the available wireless networks in another section. Any idea on how Apple did implement this? Is it just a dynamic UITableView with some fixed cells?
Or did they embed a UITableView in a static tableview cell in the static uitableview?

I tried several approaches, adding two UITableView s (one static and one dynamic) to a UITableViewController but that did not work. I tried adding a static UITableView to a UIViewController, but apparently a static UITableView needs a UITableViewController.
The only solution I came by is on devforums but that one seems quite cumbersome to me, and might not be compatible with future versions of iOS.