0
votes
1answer
29 views
NSMutableDictionary Being accessed from different classes, from RootController.m
Hello Everyone,
I have spent a few days on this and not sure what am missing, some light in this darkness really would be apprecaited!!
Background
I have a UItable being loaded …
1
vote
4answers
52 views
Replacement for use of nil in dictionaries in objective-C
Hey stackfolk,
I'm working in the IPhone SDK, and am pretty new to objective-c. Right now I'm working with NSUserDefaults to save and restore setting on my IPhone app. In order …
0
votes
3answers
47 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: …
-4
votes
3answers
79 views
How can we store into an NSDictionary? What is the difference between NSDictionary and NSMutableDictionary?
I am developing an application in which i want to use an NSDictionary. Can anyone please send me a sample code explaining the procedure how to use an NSDictionary to store Data wit …
0
votes
2answers
62 views
Passing an NSDictionary to a ViewController from AppDelegate
This is related to a question I asked earlier, but the original question was answered. Hope it's okay to open a new question, if not, feel free to delete it.
I'm trying to build a …
0
votes
2answers
77 views
Parse Query String into a Structured NSDictionary
I have a query string: a=1&b=2&c[1]=3&c[2]=4 etc…
I want a NSDictionary where a => 1, b => 2, c => [3,4]. Notice that that the value for c is an array. It s …
0
votes
1answer
108 views
Updating & changing settings plist files with new versions of an app
Hi there,
I've got a default settings plist file in the resources folder of my app, and on the first launch that gets copied to the documents folder.
In successive versions of th …
1
vote
1answer
60 views
Objective-C NSDictionary value comparison
I am returning a string of either T or F from an NSDictionary key value pair. I'm trying to find out if it is the T or the F, but it never works like I would expect it to. I'm su …
0
votes
2answers
81 views
How should I construct an NSDictionary with multiple keys?
I have a situation where I want to map a pair of objects to a dictionary of information. I'd like to avoid creating an NSDictionary of NSDictionaries of NSDictionaries since that's …
1
vote
3answers
101 views
Cocoa and Cocoa Touch: is an object on the dictionary?
I thought it would be simpler to find if an object in on a dictionary, but it appears it is not.
I have a NSMutableDictionary with just one key named "products".
I have several p …
2
votes
2answers
86 views
Using valueForKeyPath on NSDictionary if a key starts the @ symbol?
Hi there,
I want to use valueForKeyPath on my NSDictionary, but the problem is that one of the keys is a string that starts with the @ symbol. I have no control over the naming of …
0
votes
1answer
32 views
NSDictionaryController doesn’t seem to observe changes to content dictionary
I must be missing something simple, but I am having some trouble binding a tableView to an NSDictionaryController. Here is a model of my current scheme:
TableViewColumn --bindsTo- …
0
votes
2answers
79 views
A question on how to Get data from plist & how should it be layout.
This is a follow up question on my first queries regarding retrieving data on plist. Right now i have manage to detect users touches made on my view with random image call out (tha …
1
vote
2answers
44 views
Mapping integers to booleans in Objective-C
In Objective-C I need to associate a mutable collection integers (monotonic, non-contiguous, could get fairly large) to boolean values. The obvious way is just to have an NSDiction …
0
votes
1answer
97 views
Take some object in NSArray and put it randomly in labels
I choose index of an array from a plist. It's a dictionary with 10 different line with string.
NSArray* tableau = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathF …
