I am using MySQL and Java to SELECT about 50000 records. The strange thing is that when I use ResultSet and next() method to read the data, I see that the RAM usage of my java application increases du
Consider following code public class City { public string Name { get { return \"New York\"; } } Building empEstate;
Here\'s the situation. I have a MainControlle which opens a modal XController. When memory warning is received (when XController is displayed) MainController is unloaded (viewDidUnload is called) and
I\'m developing an iPhone app with XCode. I want to track the running applications of the phone and the memory, CPU usage for each of them. Stil开发者_开发问答l I wasn\'t able to find a way to do this
Need 开发者_运维问答some help for understanding the recycle() method of the class Bitmap. If I have a Bitmap[] named \"bmp\" for example whats the difference between doing
Can you please tell me how to fix this? I want to release two different AVAudioPlayer when they finish playing, but separately.
I have a NSString that i try to release. The problem is that in some cases i get EXC_BAD_ACCESS when i try to release it. The NSString has a address allocated to it (I can see in the bottom page tha
I\'ve been having some issues with getting a good grasp on memory management. I\'m adding images and buttons to the main view using a loop. The开发者_运维百科 images release properly, but not the butt
I\'m building an application that reads rss files something like Bing or Pulse, so I\'ve built a class (UIViewController) that shows each individual entry in the feed and a class that contains that li
I Am using UIWebView to load PDF files. I am coming to the webview from UITableViewController subclass.