Tagged Questions
1
vote
0answers
112 views
NSDictionary get object
I got this NSMutableDictionary that contains a object and a key.
The key is: TemplateID and the Object is a number.
My problem is i can't get the Object out, without the key.
Can anyone help?
...
2
votes
1answer
91 views
Creating UITableCell cells in order from NSMutableDictionary
I have a NSMutableDictionary created from a JSON query, running the json query in a browser has the output ordered alphabetically as i need it, and displaying this in the correct order using NSLOG ...
1
vote
1answer
51 views
Can't log description of NSMutableDictionary
I have an NSMutableDictionary with one to four objects in it. Each of the contained objects is an NSDictionary. The first dictionary contains about 83,000 references to NSManagedObjects. The second ...
0
votes
2answers
91 views
How to join the atributes of xml file into a NSMutableDictionary?
I have to join all the same atributes of a parsed XML file into an NSMubableDictionary.
I need everything about "show1", "show2", etc... in a dictionary (being ""show1", "show2", etc... the keys, ...
0
votes
3answers
126 views
passing data in nsmutabledictionary from child view to parent view
I have parent view and child view.In child view i have a NSMutableDictionary .and i add values on it.then go back to parent view and want to get values that I added in child view, any one can describe ...
0
votes
1answer
174 views
How to reorder NSMutableDictionary to a NSMutableArray?
I have a NSMutableArray containing NSURLConnection descriptions, like so:
array {
"<NSURLConnection: 0x60eb40>",
"<NSURLConnection: 0x6030e0>",
"<NSURLConnection: ...
2
votes
1answer
253 views
blocks in nsdictionary?
So I'm storing block actions into a nsmutabledictionary and then recalling them when a response comes back on a websocket. This turns async request into a block syntax. Here's the stripped down code:
...
0
votes
1answer
226 views
Split string into multidimensional NSMutableDictionary
Assuming the following example array:
{"/documents", "/documents/files", "/pictures"}
I wish to create a multidimensional NSMutableDictionary that looks like (if I were to create it manually):
...
2
votes
1answer
402 views
Xcode - Most Streamlined way of saving a lot of integers to a file
i am currently saving 30 integers to a file by creating a NSMutableDictionary and then using the NSKeyedArchiver to save it.
@interface:
NSInteger highScoreE;
NSInteger highScoreM;
NSInteger ...
0
votes
1answer
107 views
How do I load dynamic location data into a dictionary object/array?
I made a very basic dictionary that just stores a username in it, and I also want to store dynamically generated latlngs in it as well. I can already get the current latlng, and am working on how to ...
0
votes
3answers
458 views
How do you get mutable dictionaries from AFNetworking and AFJSONRequestOperation?
I'm using JSONKit with AFNetworking's AFHTTPClient (with AFJSONRequestOperation) and I can't seem to figure out how one might trigger the use of the mutableObjectFrom... methods of JSONKit rather than ...
1
vote
2answers
2k views
Dictionary Key Sort Options - Alpha then Numeric
All,
I would like to sort this mutable dictionary of arrays keys like so: A-Z 0-9 but it's coming back sorted 0-9 A-Z. How can I sort it such that the alpha chars come before the numbers? Perhaps ...
0
votes
2answers
2k views
“Mutating method sent to immutable object” despite object being NSMutableDictionary
I'm using NSMutableDictionary and hit this error:
'NSInternalInconsistencyException', reason: '-[__NSCFDictionary removeObjectForKey:]: mutating method sent to immutable object'
Here's the code:
...
2
votes
1answer
471 views
addObject to NSMutableArray in NSMutableArray
I have my UITableView data organized such that the sections of the table are the array elements of a NSMutableArray. Each element itself is a NSMutablearray of NSMutableDictionary, representing the ...
0
votes
0answers
63 views
Plist loads successfully once but not a second time when running on device
I have a problem with loading data from a plist into a NSMutableDictionary.
In the simulator, everything works. When I deploy it to the iPad, the first time I call this function everything works too, ...
0
votes
1answer
56 views
Do i need to release NSMutableDictionary in this case?
Do I need to release dictCellCollectionIndividual in this case?
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
... ...
... ...
... ...
...
6
votes
1answer
4k views
How can I convert an NSDictionary to an NSMutableDictionary?
I have an existing NSDictionary that has:
{
"charts_count" = 2;
"created_at" = "2010-04-12T16:37:32Z";
exchange = NASDAQ;
"followers_count" = 259;
id = 8404;
industry = ...
1
vote
1answer
291 views
how to get data form NSMutablearray in to NSString
Hello.......
in my apps, i have problem with xml parising .i have same tags differentiate with integer value.each tag has different value.
now the problem me facing is accessing this value for that ...
0
votes
1answer
388 views
Pass an NSMutableArray or NSMutableDictionary to a method — can you add to it?
If I have an NSMutableArray or NSMutableDictionary and pass it to a method a la:
-(void)addToThisArray:(NSMutableArray *)theMutableArray
{
[theMutableArray addObject:@"test"];
}
and call it ...
6
votes
1answer
746 views
NSMutableDictionary addition and removal KVO
I have a quick question regarding KVO. I understand that for a NSArray if observing additions is desired you can do the following.
NSIndexSet* set = [NSIndexSet indexSetWithIndex:[someIndex ...
1
vote
2answers
2k views
Populating UITableView with Dictionary Data
My Situation:
I have an NSDictionary object. Keyed by NSNumber. Values are custom objects.
I want to put dictionary values into a UITableView. As far as I can tell, UITableView requires that its ...
0
votes
1answer
119 views
Separate the records of nsmutablearray according to key
- (NSArray *)graphView:(S7GraphView *)graphView yValuesForPlot:(NSUInteger)myplotIndex {
NSLog(@"Y Axis Records %@ ",detailsArray);
NSMutableArray *yAxisarray = [[NSMutableArray alloc] init];
...
1
vote
2answers
3k views
iPhone: How to create a NSMutableDictionary which contains multiple sets of data with same key?
{
"data": [
{
"data": [
null,
null,
30,
45,
69,
70,
65
],
"title": "title5"
},
...
0
votes
2answers
3k views
Storing Custom Object in NSMutableDictionary
I am trying to store a custom object in NSMutableDictionary. After saving when I read the object from NSMutableDictionary it's always null.
Here is the code
//Saving
NSMutableDictionary *dict = ...
0
votes
3answers
2k views
Mutable Copy of NSData in NSMutableDIctionary causing memory leak
In my code, I define a NSDictionary in viewDidAppear like this:
dataDictionary = [[NSMutableDictionary alloc] init];
then later in a loadData method, I load a mutable copy of the NSDictionary ...
0
votes
1answer
51 views
Text not being displayed correctly due to code formatted wrong maybe?
I have NSMutableDictionary that I'm retrieving text from. I"m trying to display this text into a tableview cell along with some other text that I want added with it. Here's my non-working code:
...
0
votes
1answer
2k views
how do we access values stored in NSMutableArray of NSMutableDictionary?
I have stored values in NsMutableDictionaries . ThenI stored all the dictionaries in NSMutable Array. I need to access the values ? How can I do that ?
-(void)viewDidLoad
{
[super ...
1
vote
3answers
3k views
NSMutableDictionary, alloc, init and reiniting
In the following code:
//anArray is a Array of Dictionary with 5 objs.
//here we init with the first
NSMutableDictionary *anMutableDict = [[NSMutableDictionary alloc] initWithDictionary:[anArray ...
2
votes
2answers
431 views
NSMutableDictionary in iPhone
After adding the key value pairs in NSMutableDictionary, when i retrive the key/values from it, will that retrived key/value be removed from NSMutableDictionary? or is it stil maintained in ...
3
votes
3answers
7k views
How to clear a dictionary?
I'm currently doing the following to clear out an NSMutableDictionary
[myDictionary release];
myDictionary = [[NSMutableDictionary alloc] init];
The release line doesn't actually release any ...
0
votes
1answer
124 views
Cocoa-Touch. What is the semantic difference between class method init versions alloc/init?
Could someone please clarify for me the semantic difference between these two:
self.foo = [NSMutableDictionary dictionaryWithCapacity:theCapacity];
self.foo = [[[NSMutableDictionary alloc] ...
0
votes
4answers
1k views
Problem writing to a plist
Everything is working fine until I call the saveFile method (shown below) to write the file back to disk, where it crashes. What am I doing wrong?
This is part of my viewDidLoad method where I open ...