Hi all,
I am stucked with one problem.
I have a function (lets call it sliceWord)that acces an NSString from his class, and with substringWithRange:NSMakeRange(X, 1) got a random letter from the string.
This function is called from a simple call: [self sliceWord:nil];
but at the end of SliceWord, I recall itself with this code: [[juggler delayInvocationAtTarget:self byTime:2.0f] sliceWord:nil];
The first iteration works great, but the second breaks in the function - (void)setCurrentTime:(double)currentTime of SPDelayInvocation.m
In a more precise way, it breaks in [mInvocations makeObjectsPerformSelector:@selector(invoke)];
No debug error, no more information.
I know the problem is with the acces to this NSString, because if I delete it the program works fine.
Any help really apreciated