swift – 枚举值和谓词

swift – 枚举值和谓词,第1张

概述有没有办法在不调用rawValue的情况下在NSPredicate中使用枚举值? 例如: enum MyEnum: Int32 { case A, B, C}var predicate: NSPredicate = NSPredicate(format: "prop_status == %i", arg 有没有办法在不调用rawValue的情况下在nspredicate中使用枚举值?

例如:

enum MyEnum: Int32 {    case A,B,C}var predicate: nspredicate = nspredicate(format: "prop_status == %i",argumentArray: [MyEnum.A])

我正在考虑扩展nspredicate以便它可以处理MyEnum但不知道如何做到这一点.

解决方法 一种方法是使用customstringconvertible,当您遵循此协议时,您需要实现返回String类型的描述方法.然后你可以使用String.init方法来获取字符串值.

有点像这样,

enum MyEnum: Int32,customstringconvertible {    case A,C    var description: String {        return "\(rawValue)"    }}var predicate: nspredicate = nspredicate(format: "prop_status == %@",argumentArray: [String(MyEnum.A)])
总结

以上是内存溢出为你收集整理的swift – 枚举值和谓词全部内容,希望文章能够帮你解决swift – 枚举值和谓词所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存