Reputation: 2110
I am using a custom UIView for the section header in my UITableView. However, when I make changes to the table view, the labels in the section header are not updated until the user attempts to scroll. Does anyone know why this is? And how I can update the section header immediately? If it helps, I am using Core Data, and my project is based on Apple's Core Data Books example.
Upvotes: 0
Views: 110
Reputation: 6058
Call reloadData on your tableView after updating the section header.
Upvotes: 1