Search Results

2
votes

iPhone Memory Leaks

Memory leaks are blocks of memory allocated by the OS for your program to use while it is running, but not correctly returned as not in use when the program has finished with them. So this memory i …
5
votes

How can I find out the type of a NSDictionary element?

There's various sorts of introspection you can perform on any object at runtime, contained within the NSObject protocol. …