Tagged Questions
0
votes
1answer
12 views
Remove specific objects from NSMutableDictionary
I am saving different codes in a NSMutableDictionary and checking later if a specific code is in the dict.
No I want to remove the entry which contain the code.
Here you see how my array with the ...
0
votes
1answer
177 views
Unknown reason to receive Memory Warning
let me come to issue fast. There is no problem in my code so far. My only concern is Memory management. Let me make my app logic clear.
When App is launched globally NSmutableDictionary is declared ...
1
vote
1answer
132 views
Read plist into nsmutabledictionary, update the dictionary and then save it again
I am really new to saving files in objective C but what I'm trying to accomplish is reading a plist file located in the documents directory on launch or creating it if it doesn't exist.
It should be ...
0
votes
2answers
70 views
How get all values from NSMutableDictionary for key?
How I get all values from NSMutableDictionary, but only for key @"Column1" or how get index row for key?
I try [dict objectForKey: @"Column1"]; , but I get only last value for key (user3).
example ...
0
votes
2answers
122 views
plist wont pull into my NSMutableArray. am i missing something?
So here's my code. I'm trying to display content from a plist into a table and i keep running into errors. ive been at it all day so i'm probably missing something fairly easy. hope you guys can ...
0
votes
1answer
37 views
Access NSMutableDictionary values in Interface Builder
I thought this would be simple but after 2 days I'm admitting defeat.
The task is simple:
In the user interface, display & edit a single NSString value from a Key/Value pair contained in an ...
2
votes
4answers
571 views
objective c when to use NSDictionary instead of NSArray [duplicate]
I'm in a dilemma in terms of which of the two I should use. I will be retrieving a group of data via a restful API (returns json) and I'm not sure how I should store them before I display it on my UI ...
-1
votes
2answers
59 views
Update NSMutableArray after adding New object
I have a NSMutableArray which contains some NSMutableDictionary object type. In some situations I have to add one field to each NSMutableDictionary inside this Array, but I don't know how?
I do add ...
1
vote
1answer
391 views
Why does NSUserDefaults fail to save NSMutableDictionary?
I’m trying to save a NSMutableDictionary with NSUserDefaults. I read many posts on the topic in stackoverflow... I also found one option that worked; however unfortunately it worked only once and then ...
0
votes
1answer
69 views
App crashes when setting objects to NSMutableDictionary with no crash log
I try to make a simple score system for my game and I'm using dictionary and save it using NSUserDefaults to store player's scores. However when I try to set new score to existing key/value the app ...
3
votes
1answer
333 views
keysSortedByValueUsingSelector crashes but sortedArrayUsingSelector runs fine
I found a workaround myself, but still trying to understand the problem.
I created a Autocomplete text field with the use of uitableview which is hidden until textfield is edited. The UI part works ...
0
votes
1answer
150 views
NSMutableDictionary and NSMutableArray
Hello I am making a card game for ios, It is the kings drinking game,
To do this I use the following code to fill a dictionary
cardValues = [[NSMutableArray alloc] init];
for (card1 = 1; card1 ...
0
votes
1answer
42 views
Array cannot be formed from single element in NSMutableDictionary -[__NSCFString count]:
I'm setting objects to my NSMutableDictionary like this
if ([detail isEqualToString:[check objectAtIndex:1]]) {//check is NSArray,getdict is NSMutableDictionary,keyverify is NSMutableArray
...
0
votes
0answers
70 views
How to realize a bookmark function in Xcode?
Hey there I try to make a bookmark function.
The user should have the possibility to save data of a webview in a table view list.
I have some variables like a titeland a code, they stand in relation ...
1
vote
1answer
57 views
NSMutableDictionary and Caching to Disk
I'm trying to optimize my application as much as I can. All I am asking is "NSMutableDictionary after you add an object for a certain key, Does it store the data in the ram memory or the storage ...
0
votes
1answer
78 views
How to make NSURL connection start transmitting data into dictionary item?
I've got the tagged NSURLConnection subclass, and need to fetch Image data from multiple URL-s...The idea is clear to me, but i can't start the connection properly, so that data would append into its ...
1
vote
5answers
436 views
NSMutableDictionary does not sort correctly
Let i have unsorted NSMutableDictionary
{
A = "3";
B = "2";
C = "4";
}
And i need result to be like:
{
B = "2";
A = "3";
C = "4";
}
...
1
vote
2answers
174 views
Itterate through NSMutableDictionary and change value
Thanks for any help with the following:
I'm loading the following JSON data ..
(
{
name = Facilities;
versiondate = "1972-01-01";
},
{
name = Services;
versiondate = ...
1
vote
3answers
301 views
Ordering an NSMutableDictionary with multiple keys
I have an NSMutableDictionary with two keys. One for titles (e.g. 'Test') and one for distances (e.g. '200' miles).
How can I order these values by the nearest or furthest distance. I would need both ...
1
vote
3answers
483 views
'-[__NSCFDictionary setObject:forKey:]: mutating method sent to immutable object'
- (NSMutableDictionary *)updateTemplates:(NSMutableDictionary *)oldTemplates
forSpecType:(NSString *)specType {
// oldTemplates is an NSMutableDictionary pulled from a ...
0
votes
3answers
110 views
Sort an NSMutableArray / Dictionary with several objects
I am having a problem that I think I am overcomplicating.
I need to make either an NSMutableArray or NSMutableDictionary. I am going to be adding at least two objects like below:
NSMutableArray ...
0
votes
1answer
134 views
Data structure layout - NSMutableDictionary
I’m looking for the best way to store data like this...
Value 1
-item 1
-item 2
-item 3
...
-item 9
Value 2
-item 1
...
-item 9
Value 3
etc...
Then I want to pick a subset of the ...
0
votes
1answer
126 views
Getting an the object from NSMutable Dictionary and setting it as the new key.
I have a method called cache image. This uses a NSNotification centre to post the info that image has been cached. I have the data NSMutableDictionary *userInfo. I'm trying to add an observer to ...
0
votes
2answers
218 views
Get the last added key-value pair from an NSMutable Dictionary
I have an NSMutableDictionary that stores a collection of user profiles, how would I go about getting the last added profile?
0
votes
1answer
224 views
plist for the group table view
i am new in xcode, and i am writing a table view, which load from my plist, and i would use the group style for the table view, and the section header would be the month, and each month of cell will ...
0
votes
3answers
590 views
iOS Add object in key on NSMutableDictionary (not so simple as that)
How do I add more then one object for the same key? is that possible?
For example, I need to have a dictionary like this:
object:textField.text for key @"Permanent key"
I need to always add ...
2
votes
1answer
400 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 ...
1
vote
1answer
1k views
NSMutableDictionary for JSON
i'm stuck with a problem!
I have a String with JSON like:
{"UserName":"username","PassWord":"password"}
I build this JSON string with xcode like:
NSMutableDictionary *jsonDict = ...
0
votes
3answers
161 views
How to append values of NSMutableDictionary
I have NSMUtableDictionary wich includes multiple dictionary.I am doing XML parsing of that data.
Now when to return the dictionary data it gives me the last dictionary value.
Here is my code:
...
0
votes
1answer
110 views
Program Received signal EXC_BAD_SIGNAL in main.m while appending data to the groupped tableview in iphone
-(void)viewDidLoad{
for (int i=0; i<[rowsarray count]; i++) {
[mutabledict setObject:[rowsarray objectAtIndex:i] forKey:[datearray objectAtIndex:i]];
NSLog(@"mutable dict is ...
0
votes
1answer
407 views
Objective C: updating values for key for an NSMutableDictionary?
I have an NSMutableDictionary with keys and values set up initially.
Later I need to update the values for certain keys, and I thought I would just need to do
[mutableDict setValue:val forKey:key], ...
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 ...
1
vote
1answer
305 views
Why does NSLog format text correctly, but NSMutableArray does not?
EDIT: Title changed to better reflect my issue.
I am having trouble parsing a large body of text that includes line breaks and quotation marks from XML data. I'm running the parser through ...
2
votes
2answers
2k views
Using a nested NSMutableDictionary
simple question, I need to structure data in the following format:
UserID:
1 {
Name = Bob
Surname = Hope
}
2 {
...
I can use an NSMutableDictionary to add a ...
2
votes
3answers
1k views
Searching for a value in an unknown NSMutableArray depth
Ok, i kind of asked the wrong question so I've edited the original question.
I'm storing Arrays within Arrays, as well as NSDictionaries. It's a utility kind of application and there is no set ...
0
votes
2answers
389 views
Different NSMutableDictionary formatting for JSON between apps
Okay, so here's the issue. I have two apps that need to package up JSON request data and send it to the server. The issue is that when I print the result from my NSMutableDictionary to be used as ...
2
votes
3answers
389 views
Problems with adding objects to NSMutableDictionary
I am making an iPhone app and I am loading information from a server. I send NSURLRequest to the server and get back a NSString value. This is working fine and the value I am getting back is the ...
1
vote
2answers
75 views
Weird NSMutableDictionary behavior
I have an iPhone app with 4 tab bar items. One of them is a map. I get the user's current location and calculate the distance from the user to some locations around the city. I store the coordinates ...
0
votes
1answer
229 views
objectForKey not returning anything
-(NSMutableDictionary *)request:(NSString *)requestString {
NSString *filepath = [[NSBundle mainBundle] pathForResource:requestString ofType:@"xml"];
NSError *error = nil;
respString = ...
0
votes
3answers
985 views
How to determine if a Key already exists in a NSMutableDictionary ignoring case
I need to determine if the key of a new key value pair is unique before adding it to a NSMutableDictionary. How can I do this with case insensitivity? For example a new key called "my key" should not ...
2
votes
2answers
85 views
In what order will for(NSString * ID in someNSDictionary) run?
for(NSString * ID in someNSMutableDictionary)
{
//do something
}
Now, will ID show up in the order they are added to someNSMutableDictionary?
0
votes
2answers
367 views
Xcode Confusing NSMutableArray with NSMutableDictionary
I am writing an iOS application, which required me to use some NSMutableArray's. Before, I was using NSMutableDictionary (under the same variable name), but I commented out code that has to do with ...
0
votes
1answer
280 views
Need help to understand this Objective-C code snippet
Below is the code implemented in a Facebook mobile app to publish to the user's wall. How to change the value to Textview.text in the publish wall instead the user has to type it.
- ...
1
vote
1answer
3k views
Read & write my Plist that has an Array of Dictionary using Xcode
here's my issue, i'm trying to create a UITableView that is able to display the Names in my plist into the cells. I can't get the names out of the Plist. guess i'm not very certain with the ...
0
votes
2answers
1k views
NSDictionary sets values for NSMutableDictionary
I'm trying to make an rpg style game. I would like to know if and how to make an NSDictionary set the value for a mutable dictionary. The characters in my game will learn moves at different levels and ...
0
votes
1answer
83 views
Sending NSMutableDictionary between view controllers--not working on iPhone 3GS
I have an app in which I have several views in a UITabBar. The first view creates data and sends it to a table view where it is added to an array and displayed.
It has been working fine for me (on ...
0
votes
1answer
1k views
How to pass NSMutableDictionary to another View Controller
i have two ViewControllers
i need to pass a NSMutableDictionary to the second one, but whats the right way of doing that?
the NSMutableDictionary is modified in First view and passed to second, ...
0
votes
1answer
1k views
Values not appending to my NSMutableDictionary
I'm trying to add some vales to a NSMutableDictionary dynamically. However, using the following code, I'm adding values using the first letter as the key to a temporary dictionary and then finally ...
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 ...
0
votes
1answer
90 views
What does forKey mean? What does it do?
I'm guessing that it gives the object that is being added to the NSMutableDictionary or NSDictionary a name to access it. But, I have to confirm it. Can anybody tell me?
