Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
You need to post some actual code. There is no way anybody can tell what on earth you're doing just by your description. – Kurt Revis Mar 16 at 5:27

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.