2
= vs ==我在他們提到的蘋果文檔中看到=
,==
將表現相同。 https://developer.apple.com/library/content/documentation/Cocoa/Conceptual/Predicates/Articles/pSyntax.html#//apple_ref/doc/uid/TP40001795-SW1= NSPredicate
但在蘋果的例子,他們使用在大多數情況下==
和=
的零檢查。
在以下情況下使用=
安全嗎?
NSPredicate(format: "firstName = %@", "Bunny")
,或者我們應該使用:
NSPredicate(format: "firstName == %@", "Bunny")
是否與謂詞打交道時,兩者之間有什麼區別?