I can't seem to unwrap this. My objects variable seems to be coming back nil.
//Creating a query let query = PFUser.query() query?.findObjectsInBackgroundWithBlock({ (objects : [PFObject]?, error : NSError?) -> Void in self.users.removeAll(keepCapacity : true) for object in objects! { let user : PFUser = (object as? PFUser)! self.users.append(user.username!) } self.tableView.reloadData() }) 
errorand the optional type of theobjectare there for a reason: to tell you that something might go wrong and for you to able to look into and recover from it!objects?errorobject tell you? Maybe it has something to do with the printed errorinvalid session token!?