I'm porting a text based RPG I wrote in C++ to Objective-C, and I'm trying to get the text to display in a window using Cocoa.
One of the problems Im having is that I can get some text to display, but not all of it. I have one button (the "move" button) set to send an action to a method, and I also set the outlet properly, so that text will display.
However, inside the "move" method, which is triggered by the button press, I have a call to another method. For example, each time I click "move," it should also call a "random encounter" method.
The "random encounter" method returns a BOOL, and if it's true, then yet another method is called which starts battle between the player and the monster. The problem is that the "random encounter" method either isn't getting called, or it and the other methods aren't displaying their text on the window.
So, my question is how I should handle, or call, these other methods? Do I need to place the other methods in classes that are delegates?
