i can't figure out one memory leak. I will add screen shot with code and marked line where this happens.

Maybe some could help me and take a look.
Thanks.
- (AVAudioPlayer*)getSpeachSoundObject{
NSString *objectIDString = [NSString stringWithFormat:@"%i", jmObject.objectID];
NSString * __weak textPlaySource = [DataController getMediaUrlStringForObjectID:objectIDString parentType:PARENT_TYPE_ITEM_AUDIO];
NSError * error = nil ;
if (textPlaySource) {
//NSURL *soundURL = [[NSURL alloc] initFileURLWithPath:textPlaySource];//[NSURL fileURLWithPath:textPlaySource];
NSData * data = [NSData dataWithContentsOfFile:textPlaySource options:NSDataReadingMapped error:&error ] ;
textPlaySource = nil;
NSError *error;
//speechSound = [[AVAudioPlayer alloc] initWithContentsOfURL:soundURL error:&error];
AVAudioPlayer *lspeechSound = data ? [[AVAudioPlayer alloc] initWithData:data error:&error ] : nil ;
data = nil;
if (error) {
WLog([NSString stringWithFormat:@"Error creating sound file:%@", error]);
}
return lspeechSound;
//soundURL = nil;
}
return nil;
}
speechSound? – rmaddy Jan 9 at 7:10datavariable is local to this block and appears to be cleaned up properly despite the leak. However,datais used by thespeechSoundvariable. So the leak could possibly be related to that variable. You need to make sure it is properly dealt with. – rmaddy Jan 9 at 8:12