I am writing a small unit test for a UITableView and want to check if there was a call to the endUpdates method. In other words, I want to check that the UITableView is in a normal state, but not in an βupdateβ state.
Is there a way (method, property or something else) that I can use to check the status of TableView?
I was thinking of a subclass, but it seems complicated for such a simple task.
source
share