In nib file I am binding arrayController to tableView and programmatically updating its content each time when I get array of data as
arrayController.content=someRecords;
But it consuming more time to set content (0.23 second for 1000 records) and blocking main thread. is there any known issue with array controller bindings? any other solution to effectively change the array controller content ?