Well I followed someone's advice and made an @property/@synthesize for my card effect in my code. Anyone now why it wont run(of course it compiles)? Heres the code:

#import <Foundation/Foundation.h>
#import "cocos2d.h"

@interface Cards : NSObject {
    NSString* effect;
    NSString* image;  
}
@property(nonatomic,retain) NSString* effect;
@property(nonatomic,retain) NSString* image;

@end

@implementation Cards
@synthesize effect;
@synthesize image;
-(void) dealloc
{
    [effect release];
    [image release];

    [super dealloc];
}
@end

Now lets say I have Cards*card and I do card.effect = @"Hello". It will run the app and close it right after. (Pretty much it wont run) Thanks for any help. I posted another similar question but need further help.

link|improve this question
There’s nothing wrong with the code you’ve posted. Do you get any error messages/crash log? Maybe the error is in the code that uses your Cards class. – Bavarious Jun 3 '11 at 5:55
Have you allocated a new Cards object to card first? – BoltClock Jun 3 '11 at 5:55
1  
Agreed. Do you have Card *card = [[Card alloc] init]; anywhere in your code? – Jamie Jun 3 '11 at 6:05
It would be a tad easier to guess with crash logs. Can you post them? – Deepak Jun 3 '11 at 6:06
Yeah I got it. You were right I needed to do [[Card alloc]init]. I come from a java background so I do not know much about memory management. – dgTheUser Jun 7 '11 at 22:29
feedback

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

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.