Hot answers tagged nsmutabledictionary
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.
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 ...
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)];
...
3
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
Ok, Suppose you want to show ID and name in UITableView then in cellForRowAtIndexPath:
cell.textLabel.text = [NSString stringWithFormat:@"%@",[[finalArray objectAtIndex:indexPath.row] valueForKey:@"ID"]];
cell.detailTextLabel.text = [NSString stringWithFormat:@"%@",[[finalArray objectAtIndex:indexPath.row] valueForKey:@"name"]];
Good Luck !!
1
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])
{
...
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] ...
1
Buddy ,Your code is correct ,but please make sure that your plist root is array or dictionary
i think it should be array in your case
please try this code ,i just change that NSMutableDictionary to NSMutableArray in your code
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *Path = [[paths ...
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 ...
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"]
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: ...
1
country_selected=2;
NSString *countryName;
for(NSDictionary *countname in wholeJsonArray)
{
NSNumber *country_id = [countname objectForKey:@"country_id"];
if(country_selected == country_id.integerValue){
countryName = [countname objectForKey:@"country_name"];
}
}
Where countryName will contain selected id country name;
1
This is my suggestion to you, use NSMutableArray together with NSMutableDictionary. The JSON indicates it is array of dictionary. You have to redesign your code a bit.
@property (nonatomic, strong) NSMutableArray *recipients; //not NSMutableDictionary
//Store
for (NSDictionary *item in contactsArray) {
NSMutableDictionary ...
1
First of all, you need to create a state/flag for the controller/data source, in order for it to know weather you are in search/filter mode.
Then, if you are in search mode, point the data source methods to the filteredArray.
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
int numberOfSections = 0;
if (_searchMode)
{
...
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
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 ...
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 ...
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
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,
...
Only top voted, non community-wiki answers of a minimum length are eligible







