Open DenVog opened 9 years ago
Did you manage to fix this error ??
We implemented #211 and #208 and hit this problem.
During debugging, I saw that (in my case) the app hit line 190:
_oldToNewIndexMap == NULL
.
On line 775 (where the failure occurs), the code is trying to access that variable (even though it's null). Classic.
To fix, I added the following to the condition in to for loop: && _oldToNewIndexMap != NULL
. This seems to have solved our problems, but we don’t use the library extensively so tread carefully.
To recap, line 773 should now look like this:
for ( NSUInteger oldIndex = [movingSet firstIndex]; oldIndex != NSNotFound && _oldToNewIndexMap != NULL; oldIndex = [movingSet indexGreaterThanIndex: oldIndex] )
I have an older app that I recently opened with XCode 6.3.2. Did a build on a device running iOS 8.3 and it seemed to run fine. XCode pestered me to