didReciveMemoryWarning is method called by the iOS system to tell your app to dealloc recreate-able assets when device memory reaches a critical level.
0
votes
1answer
51 views
recieved memory warning and crash the app when capture more than 4 images?
In my app I need to upload 6 images to a server. I capture the image then upload it and then go to the next one and do the same.
When I reach the 5th image and after receiving 3 or 4 memory warning ...
0
votes
1answer
62 views
didReceiveMemoryWarning in iOS 6
I am starting a new project (without ARC) targeting iOS 6. From Apple doc:
Use this method to deallocate all noncritical objects associated with
your view controller. On iOS 6, you can also use ...
3
votes
1answer
72 views
How to force didReceiveMemoryWarning called under an ARC application
I've heard that didReceiveMemoryWarning is most likely to be called when you are consistently leaking allocations. However, under ARC I have always thought that allocated local variables are ...
1
vote
0answers
129 views
App crashes because of out of memory
I have a Instagram-like app with endless feed and the the camera. I am using ARC. For loading (and caching) images I'm using AFNetworking.
When i scroll feed, it's alloc and alloc a lot of memory, ...
0
votes
2answers
110 views
NSNotification & didReceiveMemoryWarning in iOS 6
As of iOS 6.0 , viewDidUnload method is deprecated. Before iOS 6 I used to removeObserver of NSNotification in viewDidUnload method. But since it is deprecated , I have moved it to ...
0
votes
0answers
18 views
didReceiveMemoryWarning proper way to remove kvo on ivar object
I have a view controller with an object of type "YourClass" that internally has setup a Key-value observer. In my view controllers didReceiveMemoryWarning method i set this object to nil but I am ...
0
votes
0answers
53 views
Release viewcontroller in the stack (after didReceiveMemoryWarning)
I want to remove all viewcontrollers (except Root) in the stack to release memory after "memory warning".
I popToRootViewController in the last controller.
Process: Root (push)-> AController ...
0
votes
1answer
71 views
What i should to do in didreceivememorywarning
I have an app with feed like instagram. When I scroll it loads more and more images.
So at one moment iOS sent me memory warning and I don't know what i should to do.
If I make array(feed) is equal to ...
2
votes
1answer
87 views
How to access current memory warning level in DidReceiveMemoryWarning in Monotouch 6.2 (Xamarin.iOS)?
I would like to know how one can programmatically access the current memory warning level in DidReceiveMemoryWarning, in Monotouch 6.2 (now called Xamarin.iOS), working with iOS6.
Also, how many ...
0
votes
1answer
69 views
Received Memory Warning Storyboard
I have create a view controller that contain into viewDidLoad function this code:
[self addChildViewController:[self.storyboard instantiateViewControllerWithIdentifier:@"View1"]];
[self ...
0
votes
1answer
222 views
IOS 6 map memory warning keep on coming and crashes app after some time
I am having memory issue with my app.
I have three mapview in my complete application.
In start my application run fine but after some time it start throwing memory warning again and again and ...
1
vote
1answer
278 views
How it works didReceiveMemoryWarning for iOS 6
I don't know too much information about didReceiveMemoryWarning but considering what I read on other posts and looking for in the documentation, I've seen that in case of iOS 5, any non-visible view ...
0
votes
1answer
35 views
Non-persistent data when app goes background
Is there a any chance that an in memory data might be lost when an iOS app goes to background?
for example if the OS give notice to the app with
didReceiveMemoryWarning and the app didn't take any ...
0
votes
0answers
53 views
didReceiveMemoryWarning using a Tab Bar
I have a UITabBar holding 3 UIViewControllers.
One being a map, the other - a table, and the third - my own custom controller.
I noticed lately that my app has some issues when it comes to operating ...
1
vote
1answer
126 views
iOS: Detect low-memory crash outside of main run loop
In one of my apps, I am doing a lot of calculations involving arrays and graphing them. The calculations involve user input, and sometimes, if the user inputs crazy values, the app will keep ...
0
votes
1answer
57 views
Why this UIImage can't release
I wanna save an image To sandBox... My app often crash and give MemoryWarning when I have saved many images.....
this is the code:
-(void)saveCurrentLine:(NSDictionary*)lineInfo
{
UIImage* ...
0
votes
0answers
57 views
ARC , attach char* to label.text through stringWithFormat , the 'live bytes' grows little by little till crash
I'm using ARC .
.h file
@property (weak, nonatomic) IBOutlet UILabel *label;
- (IBAction)OnButtonClick:(id)sender;
.m file
- (IBAction)OnButtonClick:(id)sender
{
char *example = "testabcdef";
...
1
vote
1answer
244 views
Memory warnings with maps in iOS 6
I developed the app which used MKMapView runs both in iOS 5.x and 6.x devices, when I run the app in 5.x device, there are no memory warnings, but when I run in 6.x device, I found bunch of memory ...
3
votes
1answer
98 views
How to test if your iOS app behaves well on memory warnings?
I recently noticed that sometimes our app crashes right after receiving a memory warning. It's very hard to reproduce this problem on device, and even in simulator I get this crash in maybe one of ten ...
0
votes
1answer
93 views
Parent view is not displayed after the low memory warning is received during MFMailCompose modal is open, canceled and draft saved/deleted
I have the following structure on my iPhone app
AppDelegate / UITabBarController / 5 UINavigationControllers(My tabs) / UIViewController(like rootViewController for each UINavigationController)
- ...
2
votes
2answers
144 views
Strategies for “realistically” testing low memory conditions in iOS Simulator
I'm at a point in the development of my little app where I'm implementing didReceiveMemoryWarning and such, but I feel like I don't have a good grasp on the best way to test what I'm implementing.
...
0
votes
1answer
89 views
AVCaptureSession didReceiveMemoryWarning
While capturing the images as a session of AVCaptureSession is running into a local NSMutableArray I receive a didReceiveMemoryWarning call. after testing it a little bit, I found it happens when the ...
1
vote
2answers
387 views
Received memory warning and app crash while uploading more than 100 images on my server
I am uploading more than 100 images on server using following code and i Received memory warning after uploading few images. Please help me..
Here is my code for uploading image on sever :
...
1
vote
2answers
227 views
iOS UITableView loose content after “received memory warning” message
(originally i posted this on Apple Developer Network and got no response in four days, so i am copy/pasting here)
ARC is enabled.
In my class i have an UITableViewController property,
@property ...
0
votes
2answers
61 views
Purging UIViewController
I have a stack of UIViewControllers currently, each is a modal ViewController presented over the previous one. My problem is that I do not need a stack of UIViewControllers, I only need the last one. ...
1
vote
2answers
174 views
Memory problems when working with images and camera on iphone
In my application users can add up to 8 images taken by the camera and upload them to the server one-by-one.
My problem is that even when taking the first picture i get an memory warning, which of ...
0
votes
0answers
140 views
didReceiveMemoryWarning…Coreplot ios graph in a view controller
Using the Ios Coreplot library to plot a number of scatterplots on a graph. In setting up the graph, there is a reasonable amount of memory(particularly CFNumber classes) used, however on passing the ...
0
votes
1answer
93 views
iOS save/retain data where didReceiveMemoryWarning (Equivalent Android Bundle onSaveInstanceState)
My question is simple. When do I receive Memory Warning, Where I should save or retain data or states in order to retrieve in viewDidLoad()?
For example, I got a view with a TextField, the user write ...
1
vote
0answers
77 views
ios core data persistence during applicationDidReceiveMemoryWarning
I added a managedObjectContext save to my applicationDidReceiveMemoryWarning method in the app delegate. The app seems to crash on some devices when I receive a memory warning now.
It seems that the ...
0
votes
0answers
135 views
Issues while applying image filter to UIImage in iPhone
I am using following code to apply image filter to UIImage
- (UIImage*) applyFilter:(FilterCallback)filter context:(void*)context
{
CGImageRef inImage = self.CGImage;
size_t width = ...
1
vote
0answers
240 views
Clearing the url cache on memory warning in iOS
Is it a good practice to clear the shared NSURLCache when receiving a memory warning? Something like this:
- (void)applicationDidReceiveMemoryWarning:(UIApplication *)application {
[[NSURLCache ...
2
votes
0answers
99 views
Memory Warning on the device, not with Instruments
I have a huge synchronization process in which I download and unzip 400-500 XML files and then parse it. With this data Im going to create a lot of core data objects over the RestKit API. At the ...
0
votes
2answers
1k views
Iphone App crashing due to Received memory warning even if i am releasing
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 image ...
2
votes
1answer
119 views
Did receive memory warning when alloc UIButton and UILabel
This is the situation:
I've a UIScrollView (called A) that scrolls horizontally. For this scroll view the property pagingEnabled is setted to YES. On the right of the screen I've a UIButton, that's ...
2
votes
2answers
590 views
Cordova iOS custom Plugin : handle memory warning
I'm developing an iOS app that use cordova(2.1), and some custom plugins.
The problem that I'm trying to face is the following :
When I show my plugin(basically a camera plugin with more features ...
3
votes
0answers
473 views
iPad low memory warning, although no other apps are running, and my app allocates only 8 MB
I am receiving low memory warnings on the iPad (inspected via instruments) although no other apps are running, and my app has only 8 MB of live bytes.
In my understanding, iOS triggers memory ...
1
vote
0answers
275 views
viewDidUnload deprecation, but what about strong references to secondary view?
In iOS6 the method viewDidUnload became deprecated, the memory management has changed a lot for a UIViewController. Here is a little brief about the new patterns.
The part that occupies more memory in ...
-1
votes
1answer
446 views
Memory warning in iPhone Xcode ARC but Instrument doesn't show any leak
I've completed the coding of my app with ARC Xcode 4.5 but it gives me "Received memory warning.". Because of that I'm not uploading it.
When I test it with instrument it doesn't show any leak but ...
3
votes
3answers
274 views
When is didReceiveMemoryWarning actually called
I've never personally seen didReceiveMemoryWarning called before. Is there a known threshold of memory usage where it gets called?
0
votes
2answers
441 views
What memory usage threshold when I receive memory warning in iOS
I did receive these warnings in my iOS app
Received memory warning. Level=1
Received memory warning. Level=2
The problem is, after Level=2 warning, my app will be killed...
How many MB of memory my ...
0
votes
3answers
751 views
iOS - viewDidUnload not called, but didReceiveMemoryWarning is called
Trying to hunt down the cause of crashing on certain devices. I am noticing that my view controllers are receiving didReceiveMemoryWarning, but NOT viewDidUnload. And according to Apple:
you would ...
0
votes
1answer
93 views
didReceiveMemoryWarning not invoked [closed]
I'm allocating/referencing fullscreen images, and when the memory warning gets sent, I release every unpresented image. Works fine on the new iPad, but on first gen iPad the application quits even ...
4
votes
2answers
794 views
What works in viewDidUnload should be moved to didReceiveMemoryWarning?
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 to ...
8
votes
1answer
3k views
What is the proper way to unload views in iOS 6 in a memory warning (Apple doc flaw)?
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 has ...
8
votes
3answers
4k views
iOS 6 deprecation of viewWillUnload & move to didReceiveMemoryWarning
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 ...
3
votes
2answers
260 views
What properties should I set to nil in viewDidUnload?
I don't know if I'm using viewDidUnload properly. Should I release all stuff I declare in my .h file?
Here is how I'm doing it now:
@property (strong, nonatomic) Readability *wrapper;
@property ...
0
votes
1answer
240 views
Memory Warning in Cocos2d due to images
I am loading a Cocos2d Scene that contains almost 700 png Images and even if I run this scene directly from Xcode I receive a Memory Warning message along with a long list of some of my Image names in ...
0
votes
2answers
215 views
Memory issues - Living vs. overall -> app is killed
I'm trying to check my applications memory issues in Instruments. When I load the application I play some sounds and show some animations in UIImageViews.
To save some memory I load the sounds only ...
0
votes
1answer
301 views
didReceiveMemoryWarning is not called in some view controllers in UINavigationController's view controller stack
I made UINavigationViewController with View Controller A as root view controller, and then push view controller B.
When I simulate memory warning in simulator, only A's didReceiveMemoryWarning is ...
2
votes
1answer
190 views
EXC_BAD_ACCESS after memory warning
I'm having a problem in my application with an EXC_BAD_ACCESS after receiving a memory warning.
This is how I'm testing:
I wrote a simple application that just allocates memory but doesn't free it. ...
