Passing a value from one object into another with Objective-C - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T03:53:22Zhttp://stackoverflow.com/feeds/question/698083http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/698083/passing-a-value-from-one-object-into-another-with-objective-c1Passing a value from one object into another with Objective-Cgargantaun2009-03-30T16:57:28Z2009-03-30T17:13:11Z
<p>I have a class called GameScene, with is a subclass of a cocos2d Scene. </p>
<p>In there I have two layers. GameLayer and ControlsLayer. You can probably tell already that I want the ControlsLayer to move stuff around in the GameLayer. To be precise, I'm trying to control a cPBody in the GameLayer from the ControlsLayer. </p>
<p>At the moment, I'm trying to route the instructions from the ControlsLayer, back up into the GameScene and then back down into the GameLayer. If that makes sense. Anyway, I can't get it to work. I have a PHP background so I think I'm incorrectly applying my PHP experience to Obj-C. </p>
<p>My thinking is, I should be able to access a property inside a class/object using something like</p>
<pre><code>aThing *someThing = someInstance->aThing;
</code></pre>
<p>From the sample code I've been looking at, it looks like this should work. But it doesn't. Here's the code, stripped down to as much as possible <a href="http://pastebin.com/d49c9d0be" rel="nofollow">http://pastebin.com/d49c9d0be</a></p>
<p>Rather than knowing how to fix this particular issue, The question is, what don't I understand?</p>
http://stackoverflow.com/questions/698083/passing-a-value-from-one-object-into-another-with-objective-c/698106#6981063Answer by Marc Charbonneau for Passing a value from one object into another with Objective-CMarc Charbonneau2009-03-30T17:07:34Z2009-03-30T17:13:11Z<p>In Objective-C you need to define accessor methods to get at the instance variable, you can't directly access it like that unless you're calling it from the same class type (for instance when you're implementing the NSCopying protocol and need to set private variables, but don't worry about that now).</p>
<p>The easiest way to do that is to define a property in your header using <code>@property(retain) SomeClass *name;</code>, and have Objective-C generate it by putting <code>@synthesize name = instanceVariable;</code> in your implementation. You can then access the variable outside of that class using <code>object.name;</code> or <code>[object name]</code>;. For more information take a look in the documentation for properties and Object Oriented programming.</p>
http://stackoverflow.com/questions/698083/passing-a-value-from-one-object-into-another-with-objective-c/698109#6981091Answer by Jonas for Passing a value from one object into another with Objective-CJonas2009-03-30T17:08:00Z2009-03-30T17:08:00Z<p>You're not exposing the gameLayer.myBody property in any shape. You'd have to use the @property declaration (assuming objective-c 2.0) (here's an <a href="http://theocacao.com/document.page/510" rel="nofollow">example</a>).</p>
<p>I don't have any PHP background, so I don't know how it may be different in PHP.</p>
http://stackoverflow.com/questions/698083/passing-a-value-from-one-object-into-another-with-objective-c/698116#6981161Answer by eJames for Passing a value from one object into another with Objective-CeJames2009-03-30T17:10:20Z2009-03-30T17:10:20Z<p>The correct way to access a property in an object is as follows:</p>
<pre><code>aThing * someThing = someInstance.aThing; // new style
</code></pre>
<p>or</p>
<pre><code>aThing * someThing = [someInstance aThing]; // old style
</code></pre>
<p>If you were coding in c, the <code>-></code> operator would make sense. In objective-c, however, objects are always passed around through pointers. No objective-c variable ever actually holds an object, they just hold pointers to objects. The language designers simply decided to use the <code>[]</code> or <code>.</code> syntax to access members, so that's what we have to do!</p>