datnguyen92 / Twister

0 stars 0 forks source link

Homework Week 3 Submission #1

Open datnguyen92 opened 8 years ago

datnguyen92 commented 8 years ago

Here is my assignment 3 but still need some improvement. I will keep working on it to make it better. Thank you

/cc @coderschoolreview

coderschoolreview commented 8 years ago

:+1: Nice work. The point of this homework was to explore a simple example of a full MVC application with a RESTful API.

Grading Summary

Detailed Notes

Great things:

Some small comments:

Good submission overall. This assignment is pretty hard, congrats on completing it! :star2: It was here to teach you about keeping track of "state" of objects, and also to be the first assignment to accept user input.

coderschoolreview commented 8 years ago

Some notes in your code:

extension MainViewController: UITableViewDelegate, UITableViewDataSource {
    // Implement methods of table view
    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        // Your code
    }

    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        // Your code
    }
}
   override func awakeFromNib() {
        super.awakeFromNib()
        // Initialization code
    }

    override func setSelected(selected: Bool, animated: Bool) {
        super.setSelected(selected, animated: animated)

        // Configure the view for the selected state
    }

Please view my comments in your commits for more details.