I just want to make sure that I am heading in the right direction with how a simple MVC application is constructed.
// MODEL @interface Reactor: NSObject {
You're right the model should store all your bussiness related object and they can be MODIFIED through the controller, the view make calls on the controller depending on the user actions.