有没有办法在没有@dynamic的情况下抑制@property警告?
对于我的一个类,我在运行时提供属性访问器的实现。代码运行良好并可以编译,但我收到警告,因为未实现头文件中声明的属性的方法。显然,我可以使用 @dynamic 修复此问题,但如果它在没有它的情况下也能正常工作,是否可以打开任何编译器标志来抑制此类警告?
For one of my classes I'm providing the implementation of accessors for properties at runtime. The code runs fine and compiles, but I get warnings for not implementing methods for declared properties in the header file. I can obviously fix this with @dynamic
, but if it works without it any way, is there any compiler flag I can turn on to just suppress such warnings?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不。这就是
@dynamic
的全部意义。No. That's the whole point of
@dynamic
.