I am writing a Cocoa Mac app which uses an IKImageBrowserView. When I call the following:
[imageBrowserView reloadData];
The Debugger Console prints this:
--ImageKit Error: reloadData called in non main thread
I have tried placing the reloadData method in another method and then calling the following:
[self performSelectorOnMainThread:@selector(reloadMyView) withObject:nil waitUntilDone:NO];
But I still get the same ImageKit Error. Any ideas?