You add to the table through:
[self.tableView addSubview:customView]
If so, this could be your mistake. Adding subviews to a UITableView requires that you add them as a header, footer, or cell explicitly. Try:
self.tableView.tableHeaderView = customView
source
share