show/hide this revision's text 2 added 37 characters in body

I found how to do itwhat I needed which is NOT done within the XIB file. It is way simpler than what you guys are suggesting mei thought, eventhough your the above suggestions are VALID.

In order to use the square object, I just had to reference the header file:

 #import "square.h"

in the SquareUIViewController.h and add a reference to a square object:

Square *square;

Then in the SquareUIController.m, I just have to allocate/initialize the square object prior doing anything else:

(IBAction)myInit
{
square = [[Square alloc] init];
}

Now I can use the methods of the first post And Voila !

ps: critics, fire up!

show/hide this revision's text 1

I found how to do it. It is way simpler than what you guys are suggesting me, eventhough your suggestions are VALID.

In order to use the square object, I just had to reference the header file:

 #import "square.h"

in the SquareUIViewController.h and add a reference to a square object:

Square *square;

Then in the SquareUIController.m, I just have to allocate/initialize the square object prior doing anything else:

(IBAction)myInit
{
square = [[Square alloc] init];
}

Now I can use the methods of the first post And Voila !

ps: critics, fire up!