Foundition API - NSDictionary學(xué)習(xí)

第一次學(xué)習(xí)英文官方文檔板熊,有很多不懂得地方框全,暫時(shí)空著,回頭查詢中文文檔再補(bǔ)全邻邮,如果有大神愿意指點(diǎn)竣况,請留言,感謝M惭稀5と!

1鸭蛙、創(chuàng)建一個(gè)dictionary

//1>直接創(chuàng)建一個(gè)空dictionary
+ (instancetype)dictionary;
//demo
NSDictionary *dict = [NSDictionary dictionary];

//2>獲取本地路徑下文件中的dictionary
+ (NSDictionary<KeyType,ObjectType> *)dictionaryWithContentsOfFile:(NSString *)path;
//demo
NSDictionary *dict1 = [NSDictionary dictionaryWithContentsOfFile:path];
//path是一個(gè)絕對路徑或者是相對路徑摹恨,由這個(gè)路徑獲取的文件內(nèi)容必須是一個(gè)字典,否則dict1為nil娶视。

//3>獲取接口返回的dictionary
+ (NSDictionary<KeyType,ObjectType> *)dictionaryWithContentsOfURL:(NSURL *)url;
//demo
NSDictionary *dict1 = [NSDictionary dictionaryWithContentsOfURL:url];
//url是一個(gè)接口晒哄,由這個(gè)接口獲取的文件內(nèi)容必須是一個(gè)字典睁宰,否則dict1為nil。

//4>將一個(gè)dictionary中的key和value復(fù)制到一個(gè)新的dictionary中
+ (instancetype)dictionaryWithDictionary:(NSDictionary<KeyType,ObjectType> *)dict;
//demo
NSDictionary *dict1 = [NSDictionary dictionaryWithDictionary:dict];
//dict:一個(gè)dictionary

//5>創(chuàng)建一個(gè)只有一個(gè)key和value的dictionary
+ (instancetype)dictionaryWithObject:(ObjectType)object forKey:(id<NSCopying>)key;
//demo
NSDictionary *dict1 = [NSDictionary dictionaryWithObject:value forKey:key];

//6>創(chuàng)建一個(gè)有多個(gè)value和key的dictionary
+ (instancetype)dictionaryWithObjects:(NSArray<ObjectType> *)objects forKeys:(NSArray<id<NSCopying>> *)keys;
//demo
NSDictionary *dict1 = [NSDictionary dictionaryWithObjects:@[value1,value2,value3] forKeys:@[key1,key2,key3]];
//value和key的順序必須一一對應(yīng)

//7>G蘖琛F馍怠!=夏尽:旆!7フTず睢!峰锁!沒搞清楚N凇!:缃糜芳!
+ (instancetype)dictionaryWithObjects:(const ObjectType  _Nonnull [])objects forKeys:(const id<NSCopying>  _Nonnull [])keys count:(NSUInteger)cnt;

//8>創(chuàng)建一個(gè)有多個(gè)value和key的dictionary
+ (instancetype)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
//demo
NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:value1,key1,value2,key2,value3,key3, nil];

2、初始化dictionary實(shí)例

//1>實(shí)例化一個(gè)空dictionary
- (instancetype)init;
//demo
NSDictionary *dict = [[NSDictionary alloc] init];

//2>實(shí)例化一個(gè)dictionary獲取本地路徑下文件中的數(shù)組
- (NSDictionary<KeyType,ObjectType> *)initWithContentsOfFile:(NSString *)path;
//demo
NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:path];

//3>實(shí)例化一個(gè)dictionary接收接口返回的字典
- (NSDictionary<KeyType,ObjectType> *)initWithContentsOfURL:(NSURL *)url;
//demo
NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfURL:url];

//4>實(shí)例化一個(gè)dictionary千诬,并將里一個(gè)數(shù)組中的元素復(fù)制
- (instancetype)initWithDictionary:(NSDictionary<KeyType,ObjectType> *)otherDictionary;
//demo
NSDictionary *dict = [[NSDictionary alloc] initWithDictionary:dict1];

//KD俊!P彀蟆P巴浴!0燎选R惴谩!E陶ァ喻粹!沒搞懂
//5>實(shí)例化一個(gè)dictionary,并將里一個(gè)數(shù)組中的元素復(fù)制(copyItems)
- (instancetype)initWithDictionary:(NSDictionary<KeyType,ObjectType> *)otherDictionary copyItems:(BOOL)flag;

//6>實(shí)例化一個(gè)有多個(gè)value和key的dictionary
- (instancetype)initWithObjects:(NSArray<ObjectType> *)objects forKeys:(NSArray<id<NSCopying>> *)keys;
//demo
NSDictionary *dict = [[NSDictionary alloc]initWithObjects:@[value1,value2,value3] forKeys:@[key1,key2,key3]];

//7>2菅病J匚亍!I胶查乒!沒搞懂
- (instancetype)initWithObjects:(ObjectType  _Nonnull const [])objects forKeys:(id<NSCopying>  _Nonnull const [])keys count:(NSUInteger)cnt;


//8>實(shí)例化一個(gè)有多個(gè)value和key的dictionary
- (instancetype)initWithObjectsAndKeys:(id)firstObject, ...;
//demo
NSDictionary *dict = [[NSDictionary alloc]initWithObjectsAndKeys:value1,key1,value2,key2,value3,key3, nil];

3、Creates a shared key set object for the specified keys.S艟埂B昶!E锬丁蓖议!沒搞懂

+ (id)sharedKeySetForKeys:(NSArray<id<NSCopying>> *)keys;

4虏杰、字典中條目的個(gè)數(shù)

@property(readonly, copy) NSArray<KeyType> *allKeys;
//demo
NSUInteger num =  dict. count;

5、字典比較

- (BOOL)isEqualToDictionary:(NSDictionary<KeyType,ObjectType> *)otherDictionary;
//demo
BOOL isEqule = [dict1 isEqualToDictionary:dict];

6勒虾、key和value的相關(guān)方法

//1>獲取字典中所有的key值 
@property(readonly, copy) NSArray<KeyType> *allKeys;
//demo
NSArray *keyArr = dict.allKeys;

//2>獲取所有值等于value的key的值
- (NSArray<KeyType> *)allKeysForObject:(ObjectType)anObject;
//demo
NSDictionary *dict = @{@"key1":value1,@"key2":value2,@"key3":value1};
NSArray *keyArr = [dict allKeysForObject:value1];
//返回
//(
//    key1,
//    key3
//)

//3>獲取字典中所有的value值
@property(readonly, copy) NSArray<ObjectType> *allValues;
//demo
NSArray *valueArr = dict.allValues;

//4>Returns by reference C arrays of the keys and values in the dictionary.不懂7睦!4雍场V莸堋!5土恪!拯杠!
- (void)getObjects:(ObjectType  _Nonnull [])objects andKeys:(KeyType  _Nonnull [])keys;


//5>獲取指定key的value
- (ObjectType)objectForKey:(KeyType)aKey;
//demo
NSString *str = [dict objectForKey:key];

//6>獲取指定key的value(不知道和上一個(gè)方法的具體區(qū)別是啥掏婶,暫時(shí)知道都能獲取value)
- (ObjectType)objectForKeyedSubscript:(KeyType)key;
//demo
NSString *str = [dict objectForKeyedSubscript:key];

//7>獲取指定key的value,如果沒找到潭陪,返回marker
- (NSArray<ObjectType> *)objectsForKeys:(NSArray<KeyType> *)keys notFoundMarker:(ObjectType)marker;
//demo
NSArray *arr = [dict objectsForKeys:@[key] notFoundMarker:maker];
//如果找到對應(yīng)的key值雄妥,則返回對應(yīng)的value數(shù)組,若沒找到依溯,返回只有marker的數(shù)組

//8>獲取指定key的value值(key的類型必須是NSString)
- (ObjectType)valueForKey:(NSString *)key;
//demo
NSString *str = [dict objectForKeyedSubscript:key];

7老厌、枚舉字典

//1>取出字典中的key值,組成枚舉
- (NSEnumerator *)keyEnumerator
//demo
NSEnumerator *keyEnum = [dict1 keyEnumerator];

//2>取出字典中的object黎炉,組成枚舉
- (NSEnumerator<ObjectType> *)objectEnumerator;
//demo
NSEnumerator *objectEnum = [dict1 objectEnumerator];

//3>遍歷字典枝秤,block中處理字典中的數(shù)據(jù)
- (void)enumerateKeysAndObjectsUsingBlock:(void (^)(KeyType key, ObjectType obj, BOOL *stop))block;
//demo
[dict enumerateKeysAndObjectsUsingBlock:^(id  _Nonnull key, id  _Nonnull obj, BOOL * _Nonnull stop) {
        NSLog(@"%@,%@,%d",key,obj,*stop);
}];


//4>遍歷字典,block中處理字典中的數(shù)據(jù)(暫時(shí)不清楚NSEnumerationReverse和NSEnumerationConcurrent的區(qū)別)
- (void)enumerateKeysAndObjectsWithOptions:(NSEnumerationOptions)opts usingBlock:(void (^)(KeyType key, ObjectType obj, BOOL *stop))block;
//demo
[dict enumerateKeysAndObjectsWithOptions:NSEnumerationReverse usingBlock:^(id  _Nonnull key, id  _Nonnull obj, BOOL * _Nonnull stop) {
        NSLog(@"%@,%@,%d",key,obj,*stop);
}];

8慷嗜、分類字典(暫時(shí)不懂淀弹,遇見再研究)

//1>
- (NSArray<KeyType> *)keysSortedByValueUsingSelector:(SEL)comparator;

//2>
- (NSArray<KeyType> *)keysSortedByValueUsingComparator:(NSComparator)cmptr;

//3>
- (NSArray<KeyType> *)keysSortedByValueWithOptions:(NSSortOptions)opts usingComparator:(NSComparator)cmptr;

9、字典過濾(暫時(shí)不懂庆械,遇見再研究)

//1>
- (NSSet<KeyType> *)keysOfEntriesPassingTest:(BOOL (^)(KeyType key, ObjectType obj, BOOL *stop))predicate;

//2>
- (NSSet<KeyType> *)keysOfEntriesWithOptions:(NSEnumerationOptions)opts passingTest:(BOOL (^)(KeyType key, ObjectType obj, BOOL *stop))predicate;

10薇溃、保存字典進(jìn)一個(gè)文件

//1>
- (BOOL)writeToFile:(NSString *)path atomically:(BOOL)useAuxiliaryFile;

//2>
- (BOOL)writeToURL:(NSURL *)url atomically:(BOOL)atomically;

11、訪問文件屬性

//1>
- (NSDate *)fileCreationDate;

//2>
- (BOOL)fileExtensionHidden;

//3>
- (NSNumber *)fileGroupOwnerAccountID;

//4>
- (NSString *)fileGroupOwnerAccountName;

//5>
- (OSType)fileHFSCreatorCode;

//6>
- (OSType)fileHFSTypeCode;

//7>
- (BOOL)fileIsAppendOnly;

//8>
- (BOOL)fileIsImmutable;

//9>
- (NSDate *)fileModificationDate;

//10>
- (NSNumber *)fileOwnerAccountID;

//11>
- (NSString *)fileOwnerAccountName;

//12>
- (NSUInteger)filePosixPermissions;

//13>
- (unsigned long long)fileSize;

//14>
- (NSUInteger)fileSystemFileNumber;

//15>
- (NSInteger)fileSystemNumber;

//16>
- (NSString *)fileType;

12缭乘、創(chuàng)建描述

//1>將dictionary轉(zhuǎn)換為string
@property(readonly, copy) NSString *description;

//2>將dictionary轉(zhuǎn)換為string(不太懂文檔上寫的沐序,區(qū)別就在于上一個(gè)有{},這個(gè)沒有)
@property(readonly, copy) NSString *descriptionInStringsFileFormat;

//3>
- (NSString *)descriptionWithLocale:(id)locale;

//4>
- (NSString *)descriptionWithLocale:(id)locale indent:(NSUInteger)level;

13堕绩、初始化

- (instancetype)initWithCoder:(NSCoder *)aDecoder;

14策幼、實(shí)例方法

//1>
- (NSEnumerator<KeyType> *)keyEnumerator;

//2>
- (void)getObjects:(ObjectType  _Nonnull [])objects andKeys:(KeyType  _Nonnull [])keys count:(NSUInteger)count;
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市逛尚,隨后出現(xiàn)的幾起案子垄惧,更是在濱河造成了極大的恐慌,老刑警劉巖绰寞,帶你破解...
    沈念sama閱讀 211,265評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件到逊,死亡現(xiàn)場離奇詭異铣口,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)觉壶,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評論 2 385
  • 文/潘曉璐 我一進(jìn)店門脑题,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人铜靶,你說我怎么就攤上這事叔遂。” “怎么了争剿?”我有些...
    開封第一講書人閱讀 156,852評論 0 347
  • 文/不壞的土叔 我叫張陵已艰,是天一觀的道長。 經(jīng)常有香客問我蚕苇,道長哩掺,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,408評論 1 283
  • 正文 為了忘掉前任涩笤,我火速辦了婚禮嚼吞,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘蹬碧。我一直安慰自己舱禽,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,445評論 5 384
  • 文/花漫 我一把揭開白布恩沽。 她就那樣靜靜地躺著誊稚,像睡著了一般。 火紅的嫁衣襯著肌膚如雪飒筑。 梳的紋絲不亂的頭發(fā)上片吊,一...
    開封第一講書人閱讀 49,772評論 1 290
  • 那天,我揣著相機(jī)與錄音协屡,去河邊找鬼俏脊。 笑死,一個(gè)胖子當(dāng)著我的面吹牛肤晓,可吹牛的內(nèi)容都是我干的爷贫。 我是一名探鬼主播,決...
    沈念sama閱讀 38,921評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼补憾,長吁一口氣:“原來是場噩夢啊……” “哼漫萄!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起盈匾,我...
    開封第一講書人閱讀 37,688評論 0 266
  • 序言:老撾萬榮一對情侶失蹤腾务,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后削饵,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體岩瘦,經(jīng)...
    沈念sama閱讀 44,130評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡未巫,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,467評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了启昧。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片叙凡。...
    茶點(diǎn)故事閱讀 38,617評論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖密末,靈堂內(nèi)的尸體忽然破棺而出握爷,到底是詐尸還是另有隱情,我是刑警寧澤严里,帶...
    沈念sama閱讀 34,276評論 4 329
  • 正文 年R本政府宣布新啼,位于F島的核電站,受9級特大地震影響田炭,放射性物質(zhì)發(fā)生泄漏师抄。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,882評論 3 312
  • 文/蒙蒙 一教硫、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧辆布,春花似錦瞬矩、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,740評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至惭蹂,卻和暖如春伞插,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背盾碗。 一陣腳步聲響...
    開封第一講書人閱讀 31,967評論 1 265
  • 我被黑心中介騙來泰國打工媚污, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人廷雅。 一個(gè)月前我還...
    沈念sama閱讀 46,315評論 2 360
  • 正文 我出身青樓耗美,卻偏偏與公主長得像,于是被迫代替她去往敵國和親航缀。 傳聞我的和親對象是個(gè)殘疾皇子商架,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,486評論 2 348

推薦閱讀更多精彩內(nèi)容

  • Spring Cloud為開發(fā)人員提供了快速構(gòu)建分布式系統(tǒng)中一些常見模式的工具(例如配置管理,服務(wù)發(fā)現(xiàn)芥玉,斷路器蛇摸,智...
    卡卡羅2017閱讀 134,629評論 18 139
  • 轉(zhuǎn)至元數(shù)據(jù)結(jié)尾創(chuàng)建: 董瀟偉,最新修改于: 十二月 23, 2016 轉(zhuǎn)至元數(shù)據(jù)起始第一章:isa和Class一....
    40c0490e5268閱讀 1,686評論 0 9
  • 一灿巧、源題QUESTION 1The instance abnormally terminates because ...
    貓貓_tomluo閱讀 1,593評論 0 2
  • 1. Java基礎(chǔ)部分 基礎(chǔ)部分的順序:基本語法赶袄,類相關(guān)的語法揽涮,內(nèi)部類的語法,繼承相關(guān)的語法弃鸦,異常的語法绞吁,線程的語...
    子非魚_t_閱讀 31,598評論 18 399
  • 千里煙波瀲滟生家破,蘆荻簌簌雁清鳴。蒼山遠(yuǎn)影連空碧购岗,一葉扁舟獨(dú)釣萍汰聋。 云蕩翼,雨飄零喊积,此心歸棹踏歌行烹困。天涯目斷情難斷,...
    易詞齋主人閱讀 1,503評論 38 44