Tagged Questions
1
vote
0answers
80 views
Memory leak in [[NSMutableArray alloc] init] even though with ARC
I am working heavily on Memory Fineturning and most of the problems are solved with the help of stackoverflow. But finally I got struck with a serious memory leak with NSMutableArray initialization.
...
0
votes
6answers
87 views
NSMutableArray release causes crash
I am using XCode for developing an iPhone app. I am new to this platform and need some help with a particular issue...
I have a method that processes some data and returns two integer values as ...
0
votes
0answers
124 views
Memory is not getting released
When I run the following program ... application is holding some 5MB of memory even after releasing all objects ... when I don't add an object to list everything works fine ... but I am not sure why ...
-4
votes
1answer
73 views
NSMutableArray allocated memory in tableview cellFoRowAtIndexPath delegate and it is leaking memory even after release [closed]
NSMutableArray *lCellColValues =(NSMutableArray *)nil;
lCellColValues = [[[NSMutableArray alloc] init] autorelease];
if(0 == lSecModulus) //trans info cell
{
if cObjTransListPtr.count >0 ...
0
votes
4answers
143 views
Releasing NSMutableArray in dealloc causes the app to crash
I have a UIView which holds a UITableView. This table is being populated by an NSMutableArray.
I initialized both the array and the table in the UIView's initWithFrame: method.
- ...
0
votes
3answers
117 views
Managing Memory in Objective c
I am doing my project in xcode 4.2 (Older Version). For my application, i just set the variables, arrays in dto class for using in entire app lifecycle. so i set with a property like this.
AppDTO(sub ...
1
vote
3answers
174 views
nsmutablearray leaking the memory iphone
I have an nsmutablearray which i need through out the application so i declared it in application delegate and release it in dealloc method of application delegate. Here is the code for that.
...
0
votes
0answers
135 views
iPhone memory leak issue in SQLite select query
I am trying to get facebook feeds that I already saved into table. After retrieving data from Sqlite table I am getting few memory leaks.
My Code is:-
-(void)viewWillAppear:(BOOL)animated
{
...
0
votes
1answer
172 views
initWithContentsOfFile Plist in viewWillAppear memory leak
I am loading in my plist files as below in ViewVillAppear. On first load I don't have a leak however pressing other tabBar buttons/items and returning to this view I get a leak. I have released this ...
0
votes
2answers
132 views
Sort NSMutableArray memory leak
My object has a private NSMutableArray items. I am using the following code to sort the objects in items in size order:
-(void)sortItems{
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] ...
0
votes
3answers
123 views
Analyzing memory leaks on iPad project
I've created a ipad application and now I'm doing some test with Instruments to found memory leaks and other problem.
I've found some leaks, but I can't understand why they are considered memory ...
0
votes
1answer
78 views
Changing the value of nsmutable array without causing memory leak
I have an NSMutableArray which contains UIImageView objects which are added to a scrollview.
[self.scrollView addSubview:UIImageView];
[self.array addObject:UIImageView];
I want to delete these ...
0
votes
1answer
77 views
Objective C - Leak when setting an array as an object of a dictionary
I wrote a class, which acts as a filter. I pass three objects:
An NSArray, which holds objects to filter (these objects have a timestamp property)
An NSMutableArray (which will hold the section ...
0
votes
3answers
325 views
Another memory leak using NSMutableArray
I have provided more information on the code. The checkstatusthread() is called after every 5 seconds. ipItemsArray object used below stores the XML coming from the server.
// XMLAppDelegate.h
...
0
votes
3answers
94 views
Adding an object to an NSArray is leaking, but why?
I have a class which contains an NSMutableArray called _contents. This array is initialised on creation of an instance of this class, and there is a method setContentsObject: to add an object to the ...
0
votes
3answers
110 views
iOS Memory Leak Advice
I'm pretty sure this is causing a leak and I would like some advice. Here's code based on what I'm doing:
NSMutableArray* straVideoTitles;
- (void) parseData{
//stuff
straVideoTitles = [self ...
5
votes
1answer
762 views
Where are the memory leaks in my for … in loop with addObject
There seem to be some memory leaks in the following loop:
NSMutableArray *array1 = [[NSMutableArray alloc] init];
for(SomeClass *someObject in array2){ //has already been populated;
if ...
4
votes
4answers
6k views
how to clear an NSMutableArray of custom objects without creating memory leaks?
If I have an NSMutableArray of custom objects, how can I must easily clear the array without causing any memory issues? Assume that the custom object class has a dealloc method in it which correctly ...
0
votes
2answers
178 views
Can't find the cause of my app crashing
I am working on a UIPickerController. I have everything working but when I tap the back button to go to my previous view the app is crashing.
I am thinking it could be catching a memory leak.
...
0
votes
4answers
152 views
Help with Memory leak: init NSMutableArray from file
In some point in my app, I need to load a list from a file, so I implement this method to load the list:
-(void)loadList
{
NSString *filePath = [self dataFilePath]; //This is a method return the ...
0
votes
3answers
145 views
Memory leaks while using NSMutableArray
Hi guys can somebody please advise how to cure the memory leaks in the code below
i've tried just about every combination of release and autorelease i can think of but every time either the app ...
3
votes
1answer
305 views
Memory Leak warning
I have an array declared inside a user defined method. I use this array to store the values returned from the sqlite database. Then I use that value for further processing... But Xcode gives me the ...
2
votes
2answers
1k views
Memory leak, objects in MutableArray are not released?
Xcode is telling me that there are some problems with the code below in terms of memory leaking.
@property (nonatomic, retain) NSMutableArray *naw_rows;
-(void) loadTableRows:(BOOL)shouldReload
{
...
0
votes
2answers
268 views
getting leak trying to release NSMutableArray
I'm getting memory leak releasing NSMutableArray in a UIViewController that spins up, then in ViewDidLoad it allocs and inits the array, adds objects to it; and then when view closes: its dealloc() ...
0
votes
3answers
362 views
Memory Leak on device when using mutableCopy
I thought that I was really close to release this new App of mine when I ran into a dead end. My code works without memory leaks in the simulator (Xcode 4.0.2) but reports memory leaks on my devices.
...
0
votes
1answer
57 views
Which of the following way is good way to initialize
I am a new Objective-C programmer and sometimes confused with those ownership concepts of this language....currently i am learning the iPhone programming....
Here are case those confused me always..
...
0
votes
1answer
75 views
leaks inside thread
Ok... Hello everybody I have not been able to solve this one. I have TONS of leaks inside my code and I cannot figure out why.
First you should know, this code is running in background, so I create ...
0
votes
1answer
736 views
iPhone Memory Leakage When Initializing NSMutableDictionary
I am getting a memory leak for each object that is added to glossTerms (apart from the first object). The leak is described as having "A +1 retain count (owning reference)" - I have searched the ...
0
votes
2answers
693 views
xCode - Why this memory-leak?
I have an NSMutableArray defined like this:
@property (nonatomic, retain) NSMutableArray *cList;
I have properly placed in my dealloc the release to cList, and in a selector I ...
0
votes
3answers
319 views
Problem with a NSMutableArray Leak
I thought I knew how to deal with memory leaks and arrays, but then this pops up. I can't figure pout why this is leaking:
// MyViewController.h
NSMutableArray *myMutableArray;
@property ...
0
votes
2answers
130 views
Memory leak coming from this code, how do i get rid of it?
This is my code, which the app runs upon changing to the view that it's inside of. It's causing a memory leak with colourButtonsArray when you change to this view more than once (so not the first time ...
0
votes
1answer
252 views
Memory Management on NSMutableArray
I read some materials about this then I tried to wrote a simple
app but got confused, here is the sample (using cocos2d template):
MySpriteObject class:
#import <Foundation/Foundation.h>
...
0
votes
3answers
3k views
NSMutableArray addObject in for loop - memory leak
i'm putting strings (which are filenames of files in a certain directory) into an NSMutableArray with a for loop:
h-file:
#import <Three20/Three20.h>
@interface AlbumController : ...
0
votes
2answers
103 views
problem with NSmutableArray
- (void)createTileOnScreen:(CGRect)rect
{
myArray = [[NSMutableArray alloc] init];
CGRect bounds = rect;
CGRect myRect = CGRectMake(bounds.origin.x,bounds.origin.y,
...
0
votes
2answers
3k views
Memory leak in cocoa touch with a mutableCopy
Hi all :)
I'm trying to resolve a memory leak but I can't find any solution :( .
Instruments says that there is a leak in this method:
- (void)refreshData {
Sn0werSp33dAppDelegate *appDelegate = ...
1
vote
3answers
572 views
When to release NSMutableArray from loop in viewDidLoad?
I've got the following lines in my viewDidLoad:
self.sections = [[NSMutableDictionary alloc] init];
BOOL found;
// Loop through the signs and create our keys
for (NSDictionary *sign in ...
1
vote
1answer
516 views
Leak with Mutable Array even when released
Instruments point to this line saying there is a leak here
- (void) loadFavoriteData {
TradePortMobileAppDelegate *delegate = [[UIApplication sharedApplication] delegate];
...
0
votes
2answers
410 views
objective-c cant find memory leak
hi
im mapping an xml on a custom nsobject.
when the user hits reload the function is called again.
i get several memory leaks on all strings:
UPDATE this is the current code.
- ...
0
votes
1answer
375 views
how to dealloc NSMutableDictionary
I call createTableData from viewDidLoad. What I don't understand is I'm doing an alloc for a NSMutableDictionary but I don't understand why that object is not released from memory-despite the release.
...
0
votes
1answer
1k views
mutableCopy memory leak
Can anyone shed some light as to why this use of mutableCopy is leaking memory?
- (id)objectInListAtIndex:(unsigned)theIndex {
NSSortDescriptor *descriptor = [[[NSSortDescriptor alloc] ...
0
votes
1answer
293 views
NSMutbleArray - add/remove objects with properties - leaks
i have a leak issue in my app.
I'm trying to add and remove objects to a NSMutableArray.
Here is the class Demande :
@interface Demande : NSObject {
//attibuts de la classe demande
NSString ...
1
vote
2answers
2k views
NSMutableArray - removeallobjects produces a leak
I have a mutableArray that I fill up with objects. When I try to refill the array, I first use removeAllObjects - which produces a memory leak...
The properties of the object are synthesized, ...
1
vote
1answer
70 views
How to solve the leaks in the following code? ObjectiveC
I getting leak here which is written in the appDelegate.m
-(NSMutableArray*)getSalutationList
{
NSMutableArray *list=[[NSMutableArray alloc]init];
[list addObject:@"Dr."];
[list ...
1
vote
1answer
132 views
NSMutableArray Leaks in Loop
I´m using instruments to find memory leaks, and it found a lots!
But i don´t know how to fix it.
@property(nonatomic, retain) NSMutableArray *wycategories;
...
...
self.wycategories = ...
0
votes
3answers
573 views
How to solve the leaks when allocating the NSMutableArray in Objective-C
I am getting leaks in Master view controller of iPhone.
When I call this method, I am inserting them into filteredListCount array, because when I search I need to show the list from filteredListCount ...
1
vote
4answers
7k views
iPhone NSMutableArray Memory Leak
Xcode Instruments claims that the below code results in memory leak. As far as I understand, the following happens when assigning a property:
* The old value is autoreleased
* The new value is ...
0
votes
1answer
573 views
NSMutableArray and property leaking memory
I am in memory-leak cleanup mode on my latest app, and have come across something that I am unable to solve.
the following method has been cleaned up except for 1 nagging issue. Instruments tells me ...
1
vote
3answers
2k views
NSXMLParser iPhone memory strategy for large xml
I build a parsing algorithm using NSXMLParser.
Im having doubt as to what is the best strategy for keeping my memory usage on a minimum.
I have a valueObject (e.g. "Person") this object has ≈ 30 ...
2
votes
4answers
3k views
NSMutableArray passing by parameter memory leak
I'm experiencing a hard issue here, would appreciate any, I mean ANY help =)
I'm a experienced developer by I'm new to Objective-C/iPhone/Cocoa.
I wanna create a class controller which I'm able to ...

