0
votes
2answers
304 views
AVAudioPlayer memory leak
Hi there,
I'm stuck on some weird memory leak problem related to the AVAudioPlayer and I need help after trying everything that came to mind.
Here is the short description of the …
0
votes
1answer
47 views
Memory Leak Copying data From server
for (int i=0; i<[images count] ;i++) {
url=@"http://192.168.0.101/titan/titanimages/";
url=[url stringByAppendingString:[images objectAtIndex:i]];
//NSData *imageData=[[NSDat …
0
votes
1answer
20 views
Could someone explain the colors and meaning of strack trace in Apple’s Instruments tool ?
I'm trying to be a good programmer and fix the leaks in my iPhone app...
I can't understand though what the Stack Trace in Leaks is trying to tell me.
There are multi coloured stac …
0
votes
2answers
31 views
Can memory leaks in .NET lead to a corrupted disk? (Error creating window handle)
Related to this question (I too have had this error in an application). "Error creating window handle" due to too many non disposed controls.
Can this lead to Windows crashing and …
4
votes
1answer
74 views
XCode>Instruments>Leaks - Where is “gather leaked memory contents” data?
When you check gather leaked memory contents in the Leaks instrument what does this do? I have a troublesome leak and thought maybe this "memory content" might be useful in trackin …
0
votes
2answers
80 views
WPF-application memory leak
Hello. After certain action (pressing a button that starts a sequence of calculations) in the WPF-application a memory leak occurs (it is visible in the task manager in vm size sec …
0
votes
3answers
72 views
Memory Leaks in Cocoa
I'm working on an iphone application and having some trouble with memory leaks. I've read some docs about garbage collection that it make it sound simple but I must be missing som …
3
votes
5answers
540 views
Instruments Leaks - Not showing my source code
I am attempting to analyze an iPhone application using the Leaks application and everything appears to be working fine, except for when I try to view detailed information about a p …
1
vote
3answers
89 views
My code either leaks and works, or doesn’t leak and crashes. This doesn’t seem like an autorelease problem…
After I finished coding the difficult parts of my game, I found some memory management bugs.
objects is a NSMutableArray holding a custom class.
- (void) spawnObjects
{
…
0
votes
2answers
139 views
Core Data Leaking Memory?
I keep seeing what appears to be a memory leak - but I can't tell what to do. It looks like a memory leak in Core Data. I can see the LAST method I explicitly invoke in Objective-C …
0
votes
1answer
128 views
iPhone Memory Leak JSON Library
I'm getting an instruments Memory Leak with this iPhone 3.0 SDK code.
I'm using the JSON from http://code.google.com/p/json-framework/
Here is my code:
// .h
@property (nontato …
1
vote
1answer
186 views
Why do I get this strange Memory Leak when I touch my UIImageView?
It's really strange. I have a blank UIImageView subclass that implements the -touchesEnded:, -touchesMoved, and -touchesBegan: methods. The implementations of these methods are emp …
2
votes
1answer
185 views
Track down Memory leaks in a Ruby Script
Hello!
I have created a Ruby XMPP Framework called babylon. I have then created a few applications with it and even though they run pretty smoothly, it seems that they're eating m …
0
votes
1answer
691 views
Using Instruments Leaks & Object Alloc: Are autoreleased objects counted as leaks?
I have an iPhone app that's getting memory warnings and so I'm trying to find leaks, make more efficient use of memory, etc., with the help of Instruments. Amongst other things, I' …
