I am using a NSMutableArray to store some of the UIView objects that are displayed on my view. I am calling a method continuouslyusing NSTimer to check the what are the contents of that array and rece
So this is the code I have: [dataCenter.tempPalette replaceObjectAtIndex:9 withObject:selectedColour];
I have an NSMutableArray in one of my classes.But I need to access the information contained within that array from another class.I have tried using properties, but I eithor did it wrong, or its not w
I\'m doing an Iphone aplication and in the delegate class i call a method from another class which return a NSMutableArray filled with the information i need:
I have a 开发者_Go百科problem that I can\'t get my head around, and am hoping someone could give me a hint or help.
This is the code i\'ve tri开发者_StackOverflowed modifying, to no avail every time: (UIButton *)[colourButtonsArray objectAtIndex:2].text = @\"Test\";
I have a class where a NSMutableArray object is formed, as so: navBarColour = [[NSMutableArray alloc] initWithObjects:colourOfNavBar, nil];
I am trying to access and change a array from a different class file. When using a NSLog, I get a result of (null). Below is my code:
when i remove object from nsmutable array it shows exception but some time it works [Array removeObjectAtIndex:row];
I\'ve been trying for hours to try and get this to work, but I can\'t seem to do it. The user pressed a button, which calls \'newPalette\' in HandlingPalettes, and then pushes in SingleView. Here\'s a