The problem with this code is that when the while loop is executing, the memory usage is increasing continuously. I want to know why does this code keeps on increasing memory when its in while loop. Which object here is eating the memory. What can i do so that the memory does not increase in the loop.

NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSNumber *totalTime = [[self nowPlayingItem] valueForProperty:MPMediaItemPropertyPlaybackDuration];
while (self.currentPlaybackTime < [totalTime floatValue]) 
{
    NSNumber *currentTime = [[NSNumber alloc] initWithFloat:self.currentPlaybackTime];
    if([[NSThread currentThread] isCancelled])
    {
        [NSThread exit];
        [newThread release];
    }
    else if([totalTime intValue] - [currentTime intValue] == 1.0)  
    {
        if(currentTime)
            [currentTime release];
        break;
    }
    [currentTime release];
}
[pool release]
link|improve this question
[pool drain]; use the allocations instrument to find when you get the problem – URLArenzo Apr 7 '11 at 6:46
As i hv mentioned, the memory increases when while loop is in execution. Is there anything else that i can get from Allocations instrument? – Dhawal Apr 7 '11 at 6:54
If you see the WWDC video's of last year you see that they place the autorelease pool in the while. This releases any autorelease object per cycle, making it less of a memory drain. – rckoenes Apr 7 '11 at 7:22
ok...thanx....ill try this. – Dhawal Apr 7 '11 at 7:49
placing autorelease pool inside the while loop didn't help. The problem persists. – Dhawal Apr 7 '11 at 7:59
feedback

2 Answers

That is some inefficient code you have there.... Heres a replacement that doesn't go mental allocating memory for no reason, further more you might want to put a sleep in there so it doesn't eat CPU

// not needed any more
//NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];

int totalTime = [[[self nowPlayingItem] valueForProperty:MPMediaItemPropertyPlaybackDuration] intValue];

while (self.currentPlaybackTime < totalTime) 
{
    //not needed any more
    //NSNumber *currentTime = [[NSNumber alloc] initWithFloat:self.currentPlaybackTime];
    if([[NSThread currentThread] isCancelled])
    {
        [NSThread exit];
        [newThread release];
    }
    else if((totalTime - self.currentPlaybackTime) <= 1.0)  // you may never hit 1
    {
        break;
    }
}
//[pool release]
link|improve this answer
Hi Tony, Thanx for your code but the problem persists. The memory keeps on mounting when its in the while loop. And yes, after seeing this code, i feel embarrassed about my code.I am still new to iOS and hopefully ill improve my coding style. – Dhawal Apr 7 '11 at 10:00
@Dhawal If the memory is still growing, then the problem is probably not in the code you showed us. Or you might have picked up the wrong thing in the Instruments. – android Apr 18 '11 at 12:50
feedback

I have solved this problem. Replaced the while loop with Timer and made few changes. Created a timer which fires every second

 timer = [NSTimer timerWithTimeInterval:1
                                target:self
                              selector:@selector(performAction)
                              userInfo:nil
                               repeats:YES];

then in performAction, check for the current playback time and invalidate the timer it the difference in time is <= 1 sec

int totalTime = [[[self nowPlayingItem] valueForProperty:MPMediaItemPropertyPlaybackDuration] intValue];
    if((totalTime - self.currentPlaybackTime) <= 1.0)
    {
        if(timer)
            [timer invalidate];

         /* Performed my desired action here.... */
    }
link|improve this answer
Can you post your changes here, in case anyone else runs into the same problem and finds your question on Google? – Bill the Lizard Apr 8 '11 at 11:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.