New answers tagged nsmutabledictionary
0
First check your json response on http://jsonlint.com/. It is Invalid.
0
if your plist file is like this "test.plist"
The Dictionary temp={
nickname : Junaid Sidhu
levels
item 0 = level1;
item 1 = level2;
item 3 = level3;
score
item 0 = 400;
item 1 = 400;
item 3 = 400;
}
Here is the code
NSDictionary *temp = [[NSDictionary ...
0
if you want to have multiple objects stored under the same key in a dictionary, your only chance is putting them into an
array
other dictionary
set
bag
any collection type you fancy
and storing that in your dictionary.
Reason is, dictionaries are key-value-PAIRINGS. The entire architecture isnt made to support a key that corresponds to more than one ...
0
Are you checking the PList text encoding? Remember that iOS programming is done in UTF-8.
I assume (as the question is marked with the PHP tag), that the URL you are retrieving works with PHP. Did you try encoding the text using utf8_encode()?
Another way could be using JSON. json_encode() in PHP automatically translates weird characters to its UTF-8 ...
2
Yes, it will. In general, Cocoa collection classes only retain the objects added to them (the purpose: this way you can insert non-copyable objects too).
(With CoreFoundation trickery and toll-free bridging, it is possible to realize an NSArray that copies its elements, though.)
-2
I fixed it this way:
if ([dictionary class] == [NSNull class]) {
continue;
}
0
setValue method in a NSMutableDictionary replaces the value if the key is same. So what you can do is either use NSMutableDictionary of arrays or dictionaries.
NSMutableDictionary *userDictionary=[[NSMutableDictionary alloc]init];
(int i=0;i<[displayList count];i++)
{
if([[[data valueForKey:@"username"] objectAtIndex:i] isEqualToString:user])
{
...
2
I think you should create array of dictionary. Just add your finalBooks dictionary to NSMutableArray like this
NSMutableArray *finalArray = [[NSMutableArray alloc]init];
(int i=0;i<[displayList count];i++)
{
if([[[data valueForKey:@"username"] objectAtIndex:i] isEqualToString:user])
{
[finalBooks setValue:[[data valueForKey:@"ID"] ...
1
Assuming your data will always be compliant with the format you specified, you could use something like this:
NSArray *components = [dummydata componentsSeparatedByString:@"\n"];
NSMutableDictionary *dictionary = [NSMutableDictionary new];
for(NSString *component in components) {
NSArray *subcomponents = [component componentsSeparatedByString:@" "];
...
1
The array you're adding to the dictionary is the very same object as the one you're removing all objects from. Adding it to the dictionary does not create a new object, it just adds a reference to the same object.
If you want to separate them, you should add a copy to the dictionary, like so:
NSMutableArray *copiedArray = [[menuAry mutableCopy] ...
0
There are actually two things going on here:
Dictionary (and array) subscripting
change[key]
This is a new syntactic sugar for
[change objectForKey:key]
Or, if used as an lvalue, it is syntactic sugar for
[change setObject:value forKey:key]
For what's really going on here (objectForKeyedSubscript: and setObject:forKeyedSubscript:) see ...
3
This is the new syntax introduced in Objective C relatively recently. It is documented at this link.
Scroll down to Object Subscripting syntax for an explanation:
Objective-C object pointer values can now be used with C’s subscripting operator.
Your code fragment translates as
[change setObject:@(someOtherVariable) forKeyedSubscript:@(someVariable)];
...
1
http://clang.llvm.org/docs/ObjectiveCLiterals.html
Check out "examples" about half way through the doc
0
A UIAlertView is probably not the best way to show this sort of data. While I do not know what your app does, I would probably use a UINavigationController to show a list of clients and tap down into a client detail ( http://simplecode.me/2011/09/04/an-introduction-to-uinavigationcontroller/ ). Or, if I were showing the results of an action, I would consider ...
0
Try this code:
NSString *str=[NSString stringWithFormat:@"%@ %@ %@",[responseDict valueForKey:@"m_fname"],[responseDict valueForKey:@"m_lname"],[responseDict valueForKey:@"mobile_number"],[responseDict valueForKey:@"enterd_balance"]];
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Your details" message:[NSString stringWithFormat:@"%@",str] ...
0
You can store your values in NSString after getting response from JSON and then easily you can show them on alertview like this:
NSString *testValue1=@"zohaib";
NSString *testValue2=@"999988";
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Your details" message:[NSString stringWithFormat:@"Name : %@ ,Number : ...
1
You can do it something like this. This is a pretty generic way to populate a sectioned table with a dictionary:
- (void)viewDidLoad {
[super viewDidLoad];
self.sortedKeys = [self.tempDict.allKeys sortedArrayUsingSelector:@selector(caseInsensitiveCompare:)];
[self.tableView reloadData];
}
-(NSInteger)numberOfSectionsInTableView:(UITableView ...
1
Try the following code if the dict contains NSString in date format:
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"your date format"];
NSArray *sortedKeys = [yourDictionary keysSortedByValueUsingComparator:^NSComparisonResult(NSString *obj1, NSString *obj2)
{
NSDate *date1 = [dateFormatter ...
0
You can use [myDictionary keysSortedByValueUsingSelector:@selector(compare:)];
3
I tend to do things like this:
- (NSString *)description {
return [NSString stringWithFormat:@"MyClass { array = %@, dictionary = %@ }", someArray, someDictionary];
}
Replace someArray and someDictionary with whatever properties or ivars you wish to include.
1
1) remove this, NSMutableDictionary *tempDic;
having this is enough,
@property (strong, nonatomic) NSDictionary *tempDic;
Since the tempDic object is strong, nonatomic
- (void)reciverMethod:(NSDictionary)myDictionary {
self.tempDic = myDictionary;
}
EDIT 1:
id value1 = [self.tempDic objectForKey:@"firstvalue"];
id value2 = [self.tempDic ...
1
In your case you are NOT modifying the array at all only the dictionaries within the array. There are no contstraits on how you modify the objects within the array. Here is a bit of equivalent code:
for (NSMutableDictionary *dict in _myArray) {
if (someCondition)
[dict setObject:[NSNumber numberWithInt:thisQueryResults] forKey:@"resultsNum"]
}
...
1
So in your case, I don't quite follow why you call tempDict = [obj mutableCopy]; when from the conditions you write the dictionary is already writable.
You can use serveral tricks. Like using
for (NSUInteger idx = 0; idx < _myArray.count: idx++_ {
NSMutableDictionary *obj = _myArray[idx];
// modify
}
For NSDictionaries you can get allKeys and ...
1
Just call:
createSoap.parameters = parameters;
instead of
[createSoap.parameters setDictionary:parameters];
1
So you can use a custom class (as I mentioned above in my comment), or better yet use an NSDictionary to store the values as MarkM suggested.
EDIT: "i don't have to maintain a dictionary. its a new app from the ground up."
Since you don't need to start with one big dictionary like you posted, it would be better to just store individual dictionary ...
0
What you need to do is store your NSDictionary objects in the array and then access a value from that array to do the sorting if you wish. You don't actually store a new string for the sorting. You just check the value of a certain key in the dictionary at the index in the array.
Here is a good source for sorting an array of dictionaries
0
What you say is kind of contradictory: On one hand you said you want them to be zeroing weak references, in which case your array will be filled with nil elements after they are deallocated. On the other hand you said you want it to be like NSMapTable, which may remove elements after the weak references are deallocated. Which is it?
If you want it to be ...
0
How to change the string stored in the NSMutableDictionary itself which is pointed by many pointers?
Try replacing the UIButton creation code with this code :
UIButton *btn=[UIButton buttonWithType:UIButtonTypeCustom];
rect1.size.height=TIMEROWHWIGHT*[[arr objectAtIndex:1] intValue];
[btn setTitle:[NSString stringWithFormat:@"%@",[myMutableDictionary objectForKey:date]] forState:UIControlStateNormal];
Hope it will help you :)
0
How to change the string stored in the NSMutableDictionary itself which is pointed by many pointers?
Use UIControlStateNormal instead of UIControlStateApplication unless you are specifically changing the state of the button to anything else but UIControlStateNormal (default).
1
It seems like you have two options for this. Either parse each one out into a string (definitely the less elegant/way uglier way). Or also it looks more likely that it could be an array of arrays that contain a string and dictionary.
If it ends up being the second option, you could easily just grab the object at index 0 twice to get the preText your looking ...
0
You're mixing up instance and local variables, and not updating in the loop properly.
Ideally:
myArray will be an instance variable (like you have it now).
myDictionary will be a local variable in each method you need it.
This differentiates between your persistent data and your working data.
Try this instead:
NSString *dateString = @"Date";
NSString ...
1
First thing is that you have to allocate a new dictionary everytime you are adding new object to the array , otherwise your dictionary will only be holding the last value so
- (IBAction)addData:(id)sender
{
NSMutableDictionary *_myDictionary=[[NSMutableDictionary alloc] init];
[_myDictionary setObject:_dateLabel.text forKey:dateString];
...
1
for(int i =0 ;i <[array count];i++)
{
NSLog(@"%@",[[array objectAtIndex:i]allKeys]);
}
this method will print all the keys
0
Try
-(void)displayData{
NSMutableString *outputString = [NSMutableString string];
for (NSDictionary *dict in _myArray) {
[outputString stringByAppendingFormat:@"%@\n",dict[@"Date"]];
}
_myTextView.text = [NSString stringWithString:outputString];
}
1
You better off just creating a quick class with 2 properties. Site and Url. Then you can just place them into an array and sort by Site. Like H2C03 said, dictionaries are not intended for sorting purposes.
0
If you have a nested literal of arrays and dictionaries, you can turn this into a fully mutable version by going through NSJSONSerialization. For example:
NSArray* array = @[ @{ @"call" : @{ @"devices" : @[ @"$(devices)" ] } } ];
NSData* data = [NSJSONSerialization dataWithJSONObject:array
options:0
...
0
You could try:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//cell initialization code
NSString *title = [keys objectAtIndex:indexPath.row];
cell.textLabel.text = title;
cell.detailTextLabel.text = [dictionaryOfWebsites objectForKey:title];
return cell;
}
in that case declare keys array as ...
1
If your dictionary just contains arrays then you can loop over the keys in the dictionary and filter each individually (free written code):
NSPredicate *resultPredicate = [NSPredicate
predicateWithFormat:@"Name CONTAINS[cd] %@ OR Address CONTAINS[cd] %@",
searchText,
...
3
Try
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return [[dictionaryOfWebsites allKeys] count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//Initialize cell of style subtitle
NSArray ...
0
You can use multiple dictionaries for this.
//add a dictionary as the object for KeyOne
[mutableDict setObject:[[NSMutableDictionary alloc] init] forKey:@"KeyOne"];
//add "Object a" under key one
[(NSMutableDictionary *)[mutableDict objectForKey:@"KeyOne"] setObject:@"Object a" forKey:@"detailsOnKey"];
//how to get the keyone/detailsonkey back ?, this ...
1
Sounds like you want a dictionary inside your dictionary, dawg
mutableDict[@"KeyOne"] = @{@"detailsOnKey": @"Object"}
Then you can access that nested dict like this:
mutableDict[@"KeyOne"][@"detailsOnKey"]
0
Read the deserialized JSON array as an NSArray (not NSMutableArray).
Then create a mutable copy of that array using something like:
NSMutableArray *mutableArray = [originalArray mutableCopy];
Then insert items into mutableArray.
1
You want to remove that whole entry, right?
If so, then make your "pushArray" a NSMutableArray and then you can remove the offending dictionary entries via:
for(NSDictionary * pushDict in pushArray) {
NSString * codeFromDict = [pushDict objectForKey: @"code"];
if([code_I_search isEqualToString: codeFromDict]){
[pushArray removeObject: ...
Top 50 recent answers are included









