Re: Cocoa-dev Digest, Vol 13, Issue 82

2016-02-12 Thread Michael Swan
Right before you call reload data log the current thread [NSThread currentThread]; If it says anything other than main that's the issue. It happens all the time since it's easy to forget that whatever callback tells you about the added data ends up coming in on the background. Hope that helps,

Re: Cocoa-dev Digest, Vol 13, Issue 82

2016-02-12 Thread Carl Hoefs
Mike, The -reloadData is being issued on the main thread: {number = 1, name = main} -Carl > On Feb 12, 2016, at 4:19 PM, Michael Swan wrote: > > Right before you call reload data log the current thread [NSThread > currentThread]; > If it says anything other than main