例如:
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 – 枚举值和谓词所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)