How to instantiate an NSObject in the Interface builder .xib file - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T00:45:17Z http://stackoverflow.com/feeds/question/950587 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/950587/how-to-instantiate-an-nsobject-in-the-interface-builder-xib-file 0 How to instantiate an NSObject in the Interface builder .xib file Yohann T. 2009-06-04T13:27:21Z 2009-06-10T14:49:19Z <p>Greetings,</p> <p>I have a view based application project where I have created an NSObject class called "SquareClass". Now, from the Xcode's interface builder, I want to be able to instantiate that "SquareClass" into a square object with global scope, in such a way that, when I create actions from any UI controls(i.e textboxes, buttons etc...), I want to be able to call methods of that object within those actions.</p> <p><strong>example:</strong></p> <pre><code>(void)MyAction1:(id)color { [square setColor:color]; } (void)MyAction2:(id)width { [square setWidth:width]; } </code></pre> <p>As you can see, the square object needs to have a global scope. This might seems easy or maybe the wrong way of doing it for some of us. I've look through the web, and kinda found a way for a .nib file, not for a .xib file.</p> <p>Any suggestion would be greatly appreciated. Thanks a lot.</p> <p>Yohann.</p> <p><em>ps: This is my first post EVER, be indulgent.</em></p> http://stackoverflow.com/questions/950587/how-to-instantiate-an-nsobject-in-the-interface-builder-xib-file/950794#950794 1 Answer by MystikSpiral for How to instantiate an NSObject in the Interface builder .xib file MystikSpiral 2009-06-04T14:04:59Z 2009-06-04T14:04:59Z <p>If you create a class extending UIView, then you can make the File's Owner for your xib implement the extended class. From that point simply add an instance variable to your extended class for the square. The last step in the process is to add methods to your class to bind to each of the controls to actions. </p> <pre><code>- (IBAction) pinSelected: (id)sender; </code></pre> <p>Once you create these methods (be sure to make them return IBAction, it is actually an alias for void but acts as a hint to INterface Builder) then you can bind your controls to the method through File's Owner (using control + drag to establish the link).</p> <p>Good Luck!</p> http://stackoverflow.com/questions/950587/how-to-instantiate-an-nsobject-in-the-interface-builder-xib-file/963454#963454 0 Answer by Chris Suter for How to instantiate an NSObject in the Interface builder .xib file Chris Suter 2009-06-08T04:50:24Z 2009-06-08T04:50:24Z <p>Firstly, a NIB file is, for all intents and purposes, the same as an XIB file; it’s just a compiled version of a XIB file.</p> <p>Now, to create an object derived from NSObject in your NIB/XIB, simply drag an NSObject from the library window into your file. Then on the Identity Inspector change the class to your custom class.</p> <p>If you define methods like this:</p> <pre><code>- (IBAction)myAction:(id)sender </code></pre> <p>you’ll be able to hook them up in Interface Builder.</p> <p>Having said all that, it’s difficult to tell whether what you’re doing is the right thing to do at all. It sounds to me like you should be using an NSViewController subclass so have a look at the documentation for that.</p> <p>You should also make sure you understand what view, controller and model objects are. There’s plenty of literature on this.</p> http://stackoverflow.com/questions/950587/how-to-instantiate-an-nsobject-in-the-interface-builder-xib-file/975882#975882 0 Answer by Yohann T. for How to instantiate an NSObject in the Interface builder .xib file Yohann T. 2009-06-10T14:17:56Z 2009-06-10T14:49:19Z <p>I found how to do what I needed which is NOT done within the XIB file. It is way simpler than what i thought, eventhough the above suggestions are VALID.</p> <p>In order to use the square object, I just had to reference the header file:</p> <pre><code> #import "square.h" </code></pre> <p>in the SquareUIViewController.h and add a reference to a square object:</p> <pre><code>Square *square; </code></pre> <p>Then in the SquareUIController.m, I just have to allocate/initialize the square object prior doing anything else:</p> <pre><code>(IBAction)myInit { square = [[Square alloc] init]; } </code></pre> <p>Now I can use the methods of the first post And Voila !</p> <p>ps: critics, fire up!</p>