1
我正在做一個查詢,並且正在檢查列「Parent」(它是一個指針)中的值是否等於字符串newLogObjectId。我顯然不能這樣做,因爲指針和字符串是不同的值類型,(返回nil)。如何將字符串與指針中的字符串進行比較?解析中的查詢指針(ios)
//A string, for example, "MCeKMyxRIt"
let newLogObjectId = objectIdArray[markerIndex]
let query1 = PFQuery(className: "ComparablePhotos")
//"Parent" is a pointer referencing an objectId in another class. "newLogObjectId" is a string How do I check to see if the String of Parent is equal to newLogObjectId, a string?
query1.whereKey("Parent", equalTo:newLogObjectId)
謝謝,我試過了,但NewLog正在拋出一個錯誤。 「使用未聲明的類型NewLog」 –
謝謝。我還有一個關於parentPointer的錯誤....它的「使用未解析的標識符」parentPointer'「 –
必須刪除第一次編輯時的變量聲明,我的錯誤!這現在應該適合你。 –