This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PFQuery *query = [self.event.comments query]; | |
[query includeKey:@"created_by"]; | |
[query orderByAscending:@"createdAt"]; | |
[query findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error){ | |
//Handle comments | |
}]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ViewController.swift | |
// The Unofficial IGN App | |
// | |
// Created by Jordan Morgan on 8/21/16. | |
// Copyright © 2016 Dreaming In Binary, LLC. All rights reserved. | |
// | |
import UIKit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// NetworkError.swift | |
// Unofficial Metacritic | |
// | |
// Created by Jordan Morgan on 8/29/16. | |
// Copyright © 2016 Dreaming In Binary, LLC. All rights reserved. | |
// | |
import Foundation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// IGNNetworking.swift | |
// Unofficial Metacritic | |
// | |
// Created by Jordan Morgan on 8/22/16. | |
// Copyright © 2016 Dreaming In Binary, LLC. All rights reserved. | |
// | |
import Foundation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// IGNNetworking.swift | |
// Unofficial Metacritic | |
// | |
// Created by Jordan Morgan on 8/21/16. | |
// Copyright © 2016 Dreaming In Binary, LLC. All rights reserved. | |
// | |
import Foundation | |
import UIKit |
NewerOlder