didreceivememorywarning Questions
4
Solved
I've never personally seen didReceiveMemoryWarning called before. Is there a known threshold of memory usage where it gets called?
Abruzzi asked 19/10, 2012 at 6:52
2
Solved
I'm noticing that my view controllers aren't getting their didReceiveMemoryWarning methods called when my application is in the background state on the iPad simulator. More specifically, I see the ...
Adnate asked 20/5, 2011 at 22:12
2
Solved
Whenever I create a new View Controller subclass, Xcode automatically adds the method
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that c...
Boylan asked 4/9, 2015 at 2:7
7
Solved
This is driving me crazy!!!
I'm getting a "Received memory warning. Level=1" whenever I attempt to show a UIImagePickerController with a sourceType = UIImagePickerControllerSourceTypeCamera.
Here...
Bozeman asked 23/6, 2010 at 5:2
3
Solved
Could anybody help me with this issue I'm a bit new to objective c and iOS. I've been working on it but I can't figure out how to fix the problem, My app is really simple it only start the camera t...
Cowpoke asked 27/9, 2013 at 23:19
3
Solved
This is less a question and more a record of what I've found around the AVCam sample code provided by Apple for iOS4 and 5 camera manipulation. The symptoms of the problem for me were that my app w...
Victualler asked 17/10, 2011 at 8:13
3
Solved
In new iOS 6, viewDidUnload is deprecated and we have been instructed to use didReceiveMemoryWarning instead, to manage objects in UIViewController instances and subclasses. Is it equally effective...
Bertsche asked 3/10, 2012 at 12:27
2
Run a app with tabs using iOS 5 simulator or device
Bring up a modal dialog
Simulate memory warning (for devices go to some apps that are memory intensive)
Switch to another app (if you have not d...
Blintz asked 9/11, 2011 at 23:56
2
Every time is go to the view memory in use is increasing .. even if i am saving images. And afetr sometime the app crashed due to low memory warning. can someone tel me the solution so that the ima...
Morna asked 31/10, 2012 at 11:24
3
Solved
I'm new developer about to launch my first app. I'm confused about the deprecation of viewDidUnload as described below in Apple's iOS 6 release notes:
In iOS 6, the viewWillUnload and viewDidUnl...
Posthaste asked 21/9, 2012 at 19:6
1
Solved
In iOS 6, viewWillUnload and viewDidUnload are deprecated and UIViewControllers no longer unload views that are not visible on screen during a memory warning. The View Controller Programming Guide ...
Conch asked 22/9, 2012 at 6:9
2
Solved
As I understand it, we need to hold references to our Cocoa objects when dealing with them in MonoTouch. The reason for this is that the ObjC runtime might still hold references to the objects, and...
Shine asked 23/7, 2012 at 9:0
2
Solved
My iPad app makes heavy use of autorotation. This is great. However, I've noticed that if a hidden view is released by the default implementation of didReceiveMemoryWarning (as described here), whe...
Prajna asked 11/1, 2011 at 7:45
2
My app has a thread that does some time consuming job for more than a minute and the app consumes around 6.8MB of memory. I receive a memory warning after sometime and then it gets killed. There is...
Amphigory asked 20/5, 2010 at 16:51
2
Solved
My app uses a lot of memory. Normally it runs fine, but on a loaded device that hasn't been restarted in awhile, it will be jettisoned with the infamous Low Memory error.
I would like to respond t...
Exieexigency asked 12/8, 2009 at 17:33
1
© 2022 - 2024 — McMap. All rights reserved.