Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

iOS

Chris Bracewell
Chris Bracewell
34 Points

Querying a Parse Array for PFUser Username with Swift

Checking to see if an array contains the parse username. The Array is named "Attendants" and definitely does contain the users username. The query seems to be correct and will work if I query a string but when I query the array nothing is displayed. Relevant code:

override func queryForTable() -> PFQuery! {
    var query = PFQuery(className: "Event")
    query.whereKey("Attendants", equalTo: PFUser.currentUser().username)
    query.orderByDescending("createdAt")
    return query
}

Any help would be appreciated. Thanks