gpt4 book ai didi

core-data - 在 Swift 中从数组值构建 NSCompoundPredicate

转载 作者:可可西里 更新时间:2023-11-01 02:28:16 25 4
gpt4 key购买 nike

列表项

因此,我尝试在 Swift 中设置具有多个条件的请求。 SQL 等同于:

select BOARDID
from BOARD
where BOARDID not like "someBoard"
and BOARDID not like "anotherBoard"
..

我有一个字符串数组,我试图遍历每个字符串以创建一个 subPredicate,将它添加到一个 compoundPredicate,然后使用该 compoundPredicate 创建一个获取请求:

let openBoards = ["someBoard", "anotherBoard", "etc"],
request = NSFetchRequest(entityName: "Board")

var openBoardsSubPredicates: Array = [],
error: NSError? = nil

for board in openBoards {
var subPredicate = NSPredicate(format: "boardID not like '\(board)'")
openBoardsSubPredicates += subPredicate
}

request.predicate = NSCompoundPredicate.andPredicateWithSubpredicates(openBoardsSubPredicates)

但是,它在 var subPredicate 行失败了。

谢谢!

最佳答案

错误告诉您问题出在哪里。您提供的格式不是有效格式。具体来说,没有“不喜欢”的比较。你必须在外面做“不”:

NSPredicate(format: "not (boardID like %@)", board)

正如@MartinR 在下面提到的,您可以让 NSPredicate 自动转义特殊字符,这样它们就不会通过插入变量而不是使用字符串插值来干扰谓词。

关于core-data - 在 Swift 中从数组值构建 NSCompoundPredicate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24973937/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com