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.
Cardsclass. – Bavarious Jun 3 '11 at 5:55Cardsobject tocardfirst? – BoltClock♦ Jun 3 '11 at 5:55