0
votes
0answers
41 views

How to insert values in to array?

in app i am using NSMutableArray NSMutableArray *listId = [[NSMutableArray alloc] init]; NSMutableDictionary *nameId = [[NSMutableDictionary alloc]init]; NSString *tnName = [NSString ...
0
votes
3answers
457 views

how to fetch data from NSMutableArray depending upon content within it?

I am having NSMutableArray as below How can I fetch only those data that have experience_id=1 or Update those data? Is there any other way without looping? ( { ...
0
votes
4answers
189 views

NSMutableDictionary, different print from console and code

I have some questione about NSMutableDictionary. I read that they are only a wrapper around an hashmap, so their use for ordered list is discouraged. But I have to use it, so the problems began... I ...
0
votes
1answer
209 views

If array is thread safe, what the issue with this function?

I am totally lost with the things that is happening with my code.It make me to think & get clear with Array's thread Safe concept. Is NSMutableArray OR NSMutableDictionary Thread Safe ? While my ...
0
votes
4answers
4k views

How to convert a NSMutableDictionary to a NSDictionary?

I would like to use a method (writeToFile) only available for NSDictionary to a NSMutableDictionary object. So, how do I convert this NSMutableDictionary object to NSDictionary? Thx for helping, ...
0
votes
2answers
1k views

How to save a NSMutableDictionary into a file in documents?

I would like to save the content of a NSMutableDictionary object to a file. How do I do this ? I already know how to do this task with a NSDictionary object but I don't know how to convert/copy this ...
1
vote
3answers
162 views

How to release returned object?

I have coded this method in a class: - (NSMutableDictionary *)fetch { NSMutableDictionary *ret = [[NSMutableDictionary alloc] init]; // filling ret with some data here return ret; } Is the ...
0
votes
1answer
78 views

Diffence between two syntax for NSMutableDictionary

Can anybody please tell me the exact difference between these two syntax , I found it by co-incidence Structre is like this : -> NSMutableArray (CategoryAry) ...> NSMutableDictionary ...
0
votes
1answer
348 views

How to send NSMutableDictionary via http POST in Objective-C

I have an NSMutableDictionary with some song data (for example key: "Artist" object: "Passion Pit") that I need to send to a server as http POST variables. I have been reading examples all day and ...
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
4answers
1k views

Help with a For loop and NSMutableDictionary

I am using a for loop to (currently) NSLog the contents of a NSArray. However I would like to set the contents of the array into a NSMutableDictionary, depending on the objectAtIndex it is. Currently ...