我有两个班,一个班和一个班。BeenHere有一个称为“to Place”和“fromUser”的指针,目标指向类的位置和相应的用户。反过来,Place有我想要检索的标题和图像(PFFile),并显示在ViewController中。在下面的代码中,我已经使用objectId到达了该指针,但是不知道现在如何检索与该指针指向的特定位置相关的标题和图像。感谢你的帮助和建议。

class UserBeenHereViewController: UIViewController {
override func viewDidLoad() {
    super.viewDidLoad()

    let user = PFUser.currentUser()?.username

    if user != nil {

    let query = PFQuery(className: "BeenHere")
            query.includeKey("toPlace")
            query.findObjectsInBackgroundWithBlock { (objects, error) -> Void in
        if error == nil {
            for object in objects! {
                print(object["toPlace"].objectId)

            }
        }
            else {
                print("There is error")
            }
        }
    }
}

最佳答案

首先需要将“toPlace”放入PFObject,然后访问它。所以在你的情况下应该是这样的:

var toPlace = comment["toPlace"] as? PFObject
print (toPlace["title"])

09-26 09:05