Since starting to compile my app with iOS 6 (and since also iOS 7) I\'ve started seeing this message. I know that the way that UITableViews go about managing cells is diffe
Yet another condition...
This happened when, not wanting a header, I returned nil.
nil
Fix:
func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String? { return "" }