This should be rather easy and probably I'm just missing a small thing: I have an array of images called defaultImages
NSMutableArray *defaultLetters;
then I add the letters needed (array length then is 42)
later I'm trying to replace one of the images in the array with another image. Like this:
[defaultLetters replaceObjectAtIndex:0 withObject:croppedPhoto];
but I'm getting an error saying: "-[__NSArrayI replaceObjectAtIndex:withObject:]: unrecognized selector sent to instance 0x180ae190" is there a step I'm missing?