弃用 Swift 中的枚举值
是否可以将 Swift 中的枚举值标记为已弃用?
我尝试过
enum RelativeDays {
case today, tomorrow, @available(*, deprecated, message: "Don't live in the past! Cherish the moment and look forward to the future!") yesterday
}
,但出现编译错误,指出注释所在的位置需要标识符。
Is it possible to mark an enum value in Swift as deprecated?
I tried
enum RelativeDays {
case today, tomorrow, @available(*, deprecated, message: "Don't live in the past! Cherish the moment and look forward to the future!") yesterday
}
But I get a compilation error saying that an identifier is expected where the annotation is.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这只是语法:
有效:
I think it's just the syntax:
works: