博客
关于我
objectForKey与valueForKey在NSDictionary中的差异
阅读量:796 次
发布时间:2023-02-17

本文共 1705 字,大约阅读时间需要 5 分钟。

NSDictionary ?? objectForKey: ? valueForKey: ??????

? NSDictionary ??objectForKey: ? valueForKey: ???????????????????????????????????????????????????????????????????????????????????????

1.????

objectForKey: ? valueForKey: ????? NSDictionary ??????????????????????????????????????? nil ???????????

2.???????

??????????????????????????valueForKey: ??? Key-Value Coding?KVC????????? objectForKey: ?????????????????????????????????

3.??????

valueForKey: ??????????????????

  • ????key??? "@" ?????valueForKey: ????? objectForKey: ????????????????????????

  • ???? "@" ???valueForKey: ???? "@" ??????? super ? valueForKey: ????????????????????????????valueForKey: ????????????????????????????

4.????

??????????????????????

?? 1????

NSDictionary *dict = [NSDictionary dictionaryWithObject:@"theValue" forKey:@"theKey"];NSString *value1 = [dict objectForKey:@"theKey"];NSString *value2 = [dict valueForKey:@"theKey"];

???????value1 ? value2 ?????????????????

?? 2?? "@" ????

NSDictionary *dict = [NSDictionary dictionaryWithObject:@"theValue" forKey:@"@theKey"];NSString *value1 = [dict objectForKey:@"@theKey"];NSString *value2 = [dict valueForKey:@"@theKey"];

???????value1 ???????????????? objectForKey: ????? value2 ???????????? "@" ???valueForKey: ??? "@" ??? super ? valueForKey: ????????? "theKey" ????????????? "theKey" ????valueForKey: ?????? valueForUndefinedKey: ??????? NSUndefinedKeyException ??????????

5.??

??????????objectForKey: ? valueForKey: ???????????????????? "@" ????valueForKey: ???????????????????????? NSDictionary ?????????? objectForKey: ?????????????????????

6.??

?????????????? Objective-C ????????????? valueForKey: ?????????????????????????????????????????????????????????????????????????

转载地址:http://lynfk.baihongyu.com/

你可能感兴趣的文章
NodeJS @kubernetes/client-node连接到kubernetes集群的方法
查看>>
Nodejs express 获取url参数,post参数的三种方式
查看>>
nodejs http小爬虫
查看>>
nodejs libararies
查看>>
nodejs npm常用命令
查看>>
NodeJS 导入导出模块的方法( 代码演示 )
查看>>
nodejs 的 Buffer 详解
查看>>
nodejs 读取xlsx文件内容
查看>>
nodejs 运行CMD命令
查看>>
nodejs-mime类型
查看>>
NodeJs——(11)控制权转移next
查看>>
NodeJS、NPM安装配置步骤(windows版本)
查看>>
NodeJS、NPM安装配置步骤(windows版本)
查看>>
nodejs与javascript中的aes加密
查看>>
nodejs中Express 路由统一设置缓存的小技巧
查看>>
Nodejs中的fs模块的使用
查看>>
nodejs包管理工具对比:npm、Yarn、cnpm、npx
查看>>
NodeJs单元测试之 API性能测试
查看>>
nodejs图片转换字节保存
查看>>
nodejs字符与字节之间的转换
查看>>