Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
早上好朋友 我是IOS开发的新手,我想知道objectForKey和valueForKey有什么区别。谁是表现最好的? 提前致谢
valueForKey并且objectForKey两者都将返回给定键的对象。但这里valuForKey是键值编码。
valueForKey
objectForKey
valuForKey
如果key不以“@”开头,则调用objectForKey:。如果键确实以“@”开头,则去掉“@”并[super valueForKey:]使用键的其余部分调用。
key
[super valueForKey:]