0
votes
2answers
34 views

Does iOS retrieve leak memory?

Supposed my app alloc memory every ViewDidLoad and not release. And my app does some work that cause memory fragmented. Does iOS retrieve that leak memory, or that leak memory is untouched until next ...
0
votes
1answer
31 views

Animations crash App after going into background

After looking for some feedback on how to clean up animations once they've finished I implemented the following; - (void)onAnimationComplete:(NSString *)animationID finished:(NSNumber *)finished ...
0
votes
0answers
22 views

Core Text Memory allocation issue

I inspected my app with the allocation instrument and I discovered that this code down here cause me an allocation issue. The method returns the suggested height of a squared area filled with the ...
2
votes
3answers
78 views

Could [NSMutableArray array] return nil?

For example in low memory conditions. I'm reading third party code and I saw this NSMutableArray *array = [NSMutableArray array]; if (array != nil) { [array addObject:anObject]; } I've never ...
1
vote
1answer
46 views

massive memory leak in ios uIwebview

looking for mem leaks elsewhere in our system, I created a 20 MB web page with a meta refresh tag. the idea was to move a lot data through our datapath code to confirm mem stability. <html> ...
1
vote
4answers
80 views

Memory not being released for MKMapView w/ ARC

I have a custom UIView called ActivityDetailView that I instantiate and then add to a scrollview within a parent view controller. When this custom view is allocated, it takes up about 1mb each time ...
-2
votes
5answers
114 views

NSMutableArray causes memory buildup, not Autoreleasing with ARC

I created an array using the following code. After the 12 images have no longer needed, I set the imageArray to nil and reload a new set of images into this array. When I run the app in instruments ...
0
votes
1answer
33 views

Why tiny memory leak in this func related to UIGraphicsBeginImageContext?

I have a simple function to create an UIImage with special size : - (UIImage*)imageWithSize:(CGSize) imSize { UIGraphicsBeginImageContext( imSize ); float r = 0.5f; float g = 0.5f; ...
-1
votes
0answers
37 views

Black/Empty ImagesViews on much Memory using [closed]

I init a ViewController from nib and push it to the NavigationController. The problem is, some ImageViews in the new ViewController are Black and when i'm going back to the ViewController (Tapku ...
0
votes
1answer
47 views

Memory Leaks in CFStreamCreatePairWithSocketToHost iOS

I use NSInputstream & NSOutputstream to setup a connection and send data. My stream object has a function to open and close the stream. I use the following code: @interface Stream() { ...
2
votes
1answer
85 views

iOS iPad has 1GB RAM why is my app killed after using 30MB

Is it is possible to write an app that uses 200MB, say? My iPad has 1GB, but I get didReceiveMemoryWarning after using 20 or 30MB and shortly after my app is killed. (I am the foreground app so I ...
0
votes
4answers
53 views

How to reorganize iOS project to avoid memory issues

I am building my first project that is an interactive ebook app for the iPad I started with the Single View App template from XCode So far, the project is mostly a series of block animated ...
0
votes
0answers
42 views

ios view still there after loading new view

When I set a new rootViewController: self.appDelegate.contactsView = [[Contacts alloc] initWithNibName:@"Contacts" bundle:nil]; self.window.rootViewController = self.appDelegate.contactsView; ...
0
votes
1answer
50 views

iPad crash after 20 minutes downloading data to Core Data model

I'm experiencing a crash on my iPad which I think is related to my app just running out of memory, however I can't seem to glean any information about the crash itself in order to resolve it. The app ...
0
votes
2answers
49 views

Objective-C iOS app not storing data in array of objects

this is a very hard question to ask because I don't want to flood you with all of my code, being that most of it is not pertinent to the problem. So I won't be to surprised if this goes unanswered. ...
0
votes
3answers
58 views

iOS - View high resolution image

I want to display a high resolution image in imageview. Here is what i do Prepare UIImage in the background When the file is loaded, switch to main thread Display the image [ by using UIImageView's ...
0
votes
1answer
95 views

iOS 5 and 6 free malloc-ed memory under ARC

How to free dynamically allocated memory in Objective-C under ARC? By dynamically i mean memory allocated with malloc to some ivar. dealloc and viewDidUnload are no longer being called, at least by ...
1
vote
1answer
112 views

iOS app exhausting memory during download of very large file

I know variations of my question have been asked in one form or another many times on here - I've been searching these posts extensively for days and I think my problem is unique. Allow me to ...
2
votes
4answers
94 views

CPU and Memory usage of a method call in iPhone

I am trying to add some performance stats to a method call for my iPhone app. I used the following to find the time to process: #define TICK NSDate *startTime = [NSDate date] #define TOCK ...
0
votes
1answer
146 views

Failed to load large image in UI Webview ios

I am working on an iPhone/iPad application. Trying to load very large image in UIImage view stored in local directory in app. Code: NSString *path = [[NSBundle mainBundle] ...
1
vote
2answers
118 views

Track allocations/memory usage and also step through code in XCode?

My app is downloading base64 encoded content, in most cases PDF documents. It is transferred via web service and wrapped up in SOAP. The documents can reach sizes of up to 100 MB. To store these ...
1
vote
1answer
57 views

Cocos2d 2.0: I get a higher memory allocation peak setting default pixel format to kCCTexture2DPixelFormat_RGBA4444

I am getting kind of crazy. I got an AppDelegate from where I lunch an Introduction Scene. I used TexturePacker to get a plist and png file using RGBA4444 pixel format and set in XCode to "NO" for the ...
-2
votes
1answer
77 views

XCode ARC allows release

It is very strange that ARC allows release operations but doesn't allow retain operations. As far I know, all of them are forbidden. And my app crashes due to memory leaks. Why ARC is not working ...
3
votes
1answer
65 views

How can I avoid keeping the contents of NSData in active memory?

My app requires data such as images and video to be sent across a network. I managed to split the files up into smaller chunks using an acceptable amount of RAM, like so: NSData *data = ...
-1
votes
1answer
87 views

IOS: Project crashing due to possibly using to much memory (Using ARC but might be due to image size)

Hey all I am having some problems with my app. This is my first big project for the IOS and I have been doing pretty good so far some parts that troubled here and there. But now that development is ...
0
votes
3answers
81 views

Find out how much memory an iPhone has?

My app takes the NSData of movie objects and sends it over a network. The problem is, if the video is large enough, I'm worried my app will crash because of having so much data in memory. Is there a ...
1
vote
1answer
63 views

app crashing after taking 3rd picture - iOS

I have a view in which there are 6 image views. I set the images using camera UIImagePickerController. Everytime I picked the 3rd image, my app always crash and when I checked the Instruments, there ...
0
votes
0answers
73 views

mediaserverd causes memory warning

my app continuously gets memory warnings and crashes after a couple of debug sessions, because mediaserverd is using up to 285 MB real memory and 359 MB virtual memory. During the first debug session ...
0
votes
4answers
79 views

Use and re-use some objects (Subclass of UIView)

I wonder, from a memory point of view, if what I'm doing is correct. First, the files that I want to re-use are subclasses of UIViews. In my UIViewcontroller, I declare an object like this : ...
1
vote
2answers
230 views

Memory warning threshold value for all iPad version

There are memory warning level 1 and level 2 for iOS app. The question is for all iPad devices (from iPad 1 to iPad 4, mini ) , what is the responding threshold value to send out the warnings. For ...
1
vote
0answers
33 views

Real memory usage - MPFlipTransition

I am creating an app with an UIViewController which displays other UIViewControllers with the MPFlipTransition inside it. It's like a little book on iPad. The UIViewControllers inside are created each ...
1
vote
1answer
145 views

iOS - UIImageView Animation receiving memory warning

I am attempting to run two UImageViews that have multiple arrays of animations they load and animate based on a selection the user makes. For example, here is one method: -(void)initiateAnimations { ...
0
votes
1answer
128 views

iOS - UIImageView animation memory leak?

I am currently using a UIImageView to animate a series of images depending on a button pressed by the user. I have about 5 different sets of images, that i have created in NSArrays, such as this: ...
1
vote
2answers
174 views

iOS Memory Warning when downloading many big files

I use the following code to download many files from a server. Some of these files are video files (>60Mo). This function is called in a loop. It works perfectly with small files... When I download ...
4
votes
4answers
292 views

Memory issues when encrypting/decrypting a large file with RNCryptor on iOS

I'm trying to use RNCryptor to encrypt and decrypt large files (600+MB) on iOS. On the github I found example code on how to use the library asynchronously on streams. This code is similar to the ...
0
votes
0answers
38 views

iOS Memory Leaks Extended view, show Assembly Code

I have been profiling an iPhone application, for memory leaks. I use the Leaks Instrument to find the Memory Leaks in the Application. I have not written the application though. Furthermore, I do see ...
0
votes
0answers
27 views

UISearchBar object memory

I have a NSArray of NSObjects and each object has a reference to another NSObject. Example: The Restaurant object has a Schedule object, and the schedule object has a NSString named start. When I ...
0
votes
0answers
88 views

iOS memory problems with mapView

I create very simple project with NAvigation controller which root controller is viewController with only one button that point on new mapViewControler that contains mapView. NavigatioController --> ...
1
vote
1answer
113 views

Memory Leak Downloading image from server

I have a paged slider view with an image on each page. I'm using NSOperationQueue to help me download the images from the server while the program is running. The NSOperationQueue is used to call the ...
0
votes
0answers
36 views

Memory have not be free in UITableViewCell

I have a custom TableViewCell, Use Instrument->Allocations, and found some memory have not be free, and The corresponding library is CoreGraphics.framework, Like CGPathAddCurveToPoint ...
4
votes
1answer
149 views

NSMutableArray replaceObjectAtIndex:withObject Loop Leakage

I've edited the previous post with some working code for convenience. The follow code (ARC'ed) seems to leak and will crash the sim or the device after running for a short period of time: #define ...
1
vote
1answer
404 views

gdb on iPad failing to dump memory

I'm attempting to look at the memory of an app running on my iPad. I've got the pid of the app and I'm able to attach to the process with gdb. iPad:~/dev root# gdb -p 3839 GNU gdb ...
0
votes
3answers
82 views

memory retention/leak on iOS

I have a UItableViewCell defined from a XIB file. This cell contains a UIScrollView, which is filled on the fly with UIView Objects - viewXY -. I use arc, everywhere in the code. The UI looks like: ...
0
votes
1answer
126 views

How to access iOS device (iPhone/iPad) memory statistics?

How do we access device memory statistics programmatically? Suppose I want to know whats the devices total memory capacity is. For example, whether it's 16GB, 32Gb or 64GB, and how much has been ...
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
votes
3answers
65 views

How can i do memory management for iOS Apps? [closed]

I use storyboard and ARC mode. This include three view controller. Each view controller has their class. VC1 has Class1.h and Class1.m VC2 has Class2.h and Class2.m. In each m file, i create ...
0
votes
2answers
63 views

Deallocate the presenting/previous view controller

My app has a login page, then a main page. I want to deallocate the login page when user logs in, and since main page is heavy, I obviously want it to be deallocated when I log out and go to login ...
0
votes
1answer
224 views

Android counterpart of iOS memory warning

In iOS an app will receive a memory warning by implementing a function called DidReceiveMemoryWarning, which means the RAM is not enough to use. If a Level 2 version of this warning is sent, the app ...
0
votes
1answer
147 views

NSURLConnection causing memory warning while downloading large portion of data

I am facing a disturbing problem with NSURLConnection on iOS (5.1, 6.0, 6.1). When I try to download large portion of data via http request, my app does not mark the released data as really released ...
0
votes
0answers
71 views

iOS - Memory consumption - how?

What is the way of memory consumption in iOS? Like, if I display a JPG image to screen whose size is 5 MB, will the memory consumption increase by 5 MB? Does Instruments display linear, simple ...

1 2 3 4 5 10