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
Found a solution at iphonedevsdk
Instead of doing this:
[tableViewController.view addSubview:viewSubclass];
do this
[tableViewController.navigationController.view addSubview:viewSubclass];