0
votes
3answers
41 views
problem while accesing mutable array value
Hi
I am new to this objective c
I have created the one mutable array in appdelegate.
I am trying to retrieve values of that mutable array in another app. But it is crashing at t …
0
votes
2answers
30 views
How to split an NSArray into two equal pieces?
I have an NSArray, and I want to split it into two equal pieces (if odd "count" then add to the latter new array) - I want to split it "down the middle" so to speak.
The followi …
0
votes
3answers
40 views
Creating an Array of Arrays in XCode
I am trying to build an array that contains arrays of dictionary objects in Xcode. I can create a working array that has one or more dictionaries in it and then use the addObject: …
1
vote
2answers
61 views
How can I edit a mutable property in Objective C?
Hello.
I am trying to edit a mutable array from a property and can't seem to directly make it work. Consider the following code that seems to work, but seems also very ineffici …
0
votes
3answers
30 views
Saving to Core Data with NSMutableArray
Hi all!
Been having a bit of a headache with this one and was wondering if someone could offer some advice!
Im implementing persistent storage with Core Data.
I have two Entitie …
0
votes
2answers
85 views
NSMutable array invalid after objectAtIndex
@implementation Level
@synthesize doors, rooms;
- (id) init
{
self = [super init];
if (self != nil) {
rooms = [[NSMutableArray alloc] init];
doors = [[NSMutableAr …
1
vote
4answers
69 views
Difference between CFMutableArray and NSMutableArray ?
What is the difference between NSMutableArray and CFMutableArray?
In which case(s) should we use one or the other?
3
votes
4answers
249 views
Cocoa Touch Question. Should [NSMutableArray array] be retained?
Here is the gist of some code I'm writing. I'm concerned that I am not properly addressing the retain/release issues with the array class method on NSMutableArray. Is the following …
1
vote
4answers
115 views
Disadvantage of using NSMutableArray vs NSArray?
I'm using an array to store cached objects loaded from a database in my iPhone app, and was wondering: are there any significant disadvantages to using NSMutableArray that I should …
0
votes
1answer
6 views
Trim file extension UITableView
I want to trim the file extension from text I have NSMutableArray'd in table cells.
NSMutableArray *theFiles;
NSFileManager *manager = [NSFileManager defaultManager];
NSArra …
0
votes
2answers
39 views
out of scope - NSMutableArray error
data = [[NSMutableArray arrayWithCapacity:numISF]init];
count = 0;
while (count <= numISF)
{
[data addObject:[[rouge_col_data alloc]init]];
count++;
}
When I step t …
0
votes
2answers
56 views
Null selector sent to first item in NSMutableArray
Whenever I call this method:
- (IBAction)addListItem: (id)sender {
NSString *newItemText = [inputField stringValue];
TodoItem *newItem = [[TodoItem alloc] initWithGUID …
-1
votes
1answer
68 views
NSMutableArray values becoming “invalid”
Hi all, I'm trying to show a database information in a tableview and then the datailed information in a view my problem is as follow:
I created a NSMutable array: NSMutableArray …
0
votes
1answer
25 views
Thread-safe NSMutableArray question
I am developing a RSS reader which uses a NSMutableArray (_stories) to store the contents of the RSS Feed. This array is being used by two different threads in the application and …
0
votes
3answers
798 views
Array from iPhone plist
I am trying to get an array from a plist as suggested on an answer here but it's not working. Can someone tell me what I'm missing?
Here is what the plist looks like....another we …
