fixed: typo in call to replaceObjectsAtIndexes

This commit is contained in:
daboe01
2018-02-24 14:59:27 +01:00
parent ad7c88fb45
commit 25c8b2d631
+1 -1
View File
@@ -209,7 +209,7 @@
[[self mutableArrayValueForKeyPath:aKeyPath] removeObjectsAtIndexes:indexes];
else if (changeKind === CPKeyValueChangeReplacement)
[[self mutableArrayValueForKeyPath:aKeyPath] replaceObjectAtIndexes:indexes withObjects:newValue];
[[self mutableArrayValueForKeyPath:aKeyPath] replaceObjectsAtIndexes:indexes withObjects:newValue];
}
else
{