objective-c – Xcode 4在使用@属性时自动生成iVars,在哪里可以找到此功能的官方文档?

objective-c – Xcode 4在使用@属性时自动生成iVars,在哪里可以找到此功能的官方文档?,第1张

概述我读过“ Xcode中的新功能”,但我找不到此功能的官方解释. 我在哪里可以找到官方解释?哪个文件?谢谢. 您可以在 Objective-C Programming Language: Declared Properties的“财产实施指令”下的Apple文档中找到此信息.是否自动合成ivar取决于您使用的运行时间: There are differences in the behavior of 我读过“ Xcode中的新功能”,但我找不到此功能的官方解释. @H_502_7@我在哪里可以找到官方解释?哪个文件?谢谢.解决方法 您可以在 Objective-C Programming Language: Declared Properties的“财产实施指令”下的Apple文档中找到此信息.是否自动合成ivar取决于您使用的运行时间:

There are differences in the behavior of accessor synthesis that depend on the runtime (see also “Runtime Difference”):

For the legacy runtimes,instance variables must already be declared in the @interface block of the current class. If an instance variable of the same name as the property exists,and if its type is compatible with the property’s type,it is used—otherwise,you get a compiler error. For the modern runtimes (see “Runtime Versions and Platforms” in Objective-C Runtime Programming GuIDe),instance variables are synthesized as needed. If an instance variable of the same name already exists,it is used.

iOS总是使用现代运行时,因此您永远不需要显式声明ivars.

总结

以上是内存溢出为你收集整理的objective-c – Xcode 4在使用@属性时自动生成iVars,在哪里可以找到此功能的官方文档?全部内容,希望文章能够帮你解决objective-c – Xcode 4在使用@属性时自动生成iVars,在哪里可以找到此功能的官方文档?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1003334.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存