NSMutableDictionary

//NSMutableDictionary

#import “Student.h”

#pragma mark use of NSMutableDictionary

void dictUse(){

Student *stu1=[Student studentWithName:@”stu1”];

Student *stu2=[Student studentWithName:@”stu2”];

//create a mutable void dict

NSMutableDictionary  *dict=[NSMutableDictionary dictionary];

//add elements

//add student class

//Way1:

11

//If not check that ,in current project only quote

//if just quote ,never check move to trash,it will delete original file.

1

//Way2

//Select the files and move to your current project

 1

//Personal opinion better copy

1

1

[dict setObject:stu1  forKey:@“k1”];//counter=2

NSLog(@”stu1:zi%”,[stu1 retainCount]);

[dict setObject:stu2 forKey:@”k2”];

}

1

//check which files are added to your project

1

//Tips

//If you import some files from outside,check whether they are compiled.

//When the dict is destroied , all the keys and values  inside will be reduce counter

//Add content of other dictionary into current dictionary

NSDictory *other=[NSDictionary dictionaryWithObject:@”v2” forKey:@”k2”];

[dict addEntriesFromDictionary:other];

//delete element

[dict removeAllObjects];// Remove all keys and values

[dict removeObjectForKey:@”k1”];

// remove object according to key stu1

//Remove objects base on multi-keys

[dict removeObjectsForKeys:[NSArray arrayWithObject:@”k1”]];

原文地址:https://www.cnblogs.com/yesihoang/p/4552157.html