I am somewhat confused that, in a book, the design of the game on iOS is by using the MVC pattern. So we have
View, which is done by the Interface Builder, and drawing connections out for the controls' properties / values (as outlets), and event handlers (as actions)
Model, which stores the states of the game, such as time remaining, and current player's score (human player)
Controller, which runs after the View is loaded, to populate the Model's data to the view, set up the Timer for the game, handle the user's tapping on the screen, etc (event handlers), and implement the event handler for the Timer events.
So this makes sense, but there is a also a fourth class called ComputerPlayer, which is to handle the game's rules and mechanics, such as creating the words for the human player to guess, tell how many remaining words for the human player to guess, and provide for the next word for the human player to guess. (Update: this ComputerPlayer is 100% used by the Model class... the Model code instantiated the ComputerPlayer object and then make calls to it).
I don't quite understand why in this MVC model, there is an extra class ComputerPlayer? Why not make this part of the Model class, or even part of the Controller class?
(It sort of looks like helpers, if compared to Ruby on Rails's MVC pattern. But helpers are mostly called by the View code.)
