My application uses UITableViews throughout, so with this I want to be able to give all of their section header’s the same view.
Rather than just copying and pasting the code into each of the UITableViews delegates, where would I place the necessary override method of - tableView:viewForHeaderInSection to make sure that the UITableViews section header is always the custom view I want?
Create a subclass of whatever contains your tableview (probably a view controller). Then put your
tableView:viewForHeaderInSectioncode in this controller. Import the header from this subclass into all of your view controllers and make them a subclass of it