本文介绍了如何在iOS Objective-C头文件中将功能标记为不推荐使用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在iOS Objective-C头文件中将功能标记为已弃用?
How do I flag a function as being deprecated in an iOS Objective-C header file?
我猜想在该功能后面的某个地方可以贴一些关键词吗?
I'm guessing there's just some keyword I can stick after the function somewhere?
我希望任何人尝试使用不推荐使用的功能时都将生成编译器警告,类似于Apple API中的行为.
I would like for a compiler warning to be generated should anyone try and use the deprecated function, similar to the behavior seen in Apple's APIs.
推荐答案
尝试将属性附加到方法声明中:
Try appending an attribute to your method declaration:
- (void)fooBar __attribute__ ((deprecated));
来自此处.
这篇关于如何在iOS Objective-C头文件中将功能标记为不推荐使用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!