I\'m testing an iPhone app with the simulator. Whenever I click on certain elements, I receive this error in console:
AX ERROR: Could not find my mock parent, mo
For me the problem was that the code path eventually called
[tableView beginUpdates] [tableView endUpdates]
within the tableView:cellForRowAtIndexPath: method.
tableView:cellForRowAtIndexPath:
Removing the call got rid of these AX Error log messages as well as a bunch of other UI glitches.