Okay, I tried that, but no luck so far. I still get the warning and a segFault (I'm a noob to objective C, but not to programming :) ). Let me post more code because it seems the errors might be elsewhere:card.m
Card.m
#import "card.h"
@implementation Card
- (id)init : (int)newvalue
{
[super init];
value=newvalue;
return self;
}
-(int)getValue
{
return value;
}
@end
Hand.m`#import
#import "Hand.h"
@implementation Hand
- (id)init : (Deck*) deck
{
[super init];
cards= [[NSMutableArray alloc] init];
[self draw: deck];
[self draw: deck];
return self;
}
- (void)draw: (Deck*)deck;
{
Card* C= [deck drawFromDeck];
[cards addObject: C];
}
-(int) getTotal
{
int total;
for (Card* C in cards)
{
total+=[C getValue];
}
return total;
}
-(void)showCards
{
NSLog(@"Your cards are: ");
for (NSUInteger x=0; x<[cards count]; x++)
{
NSLog(@"%@ ",[[cards objectAtIndex: x] getValue]);
}
}
@end
`
deck.m
Deck.m
#import "Deck.h"
@implementation Deck
-(id) init
{
[super init];
cards= [[NSMutableArray alloc] init];
for (short x=0; x<4; x++)
{
for (short y=1; y<14; y++)
{
[cards addObject: [[Card alloc] init: y]];
}
}
return self;
}
-(id)drawFromDeck
{
NSUInteger index = 1+ rand()%[cards count];
return [cards objectAtIndex:index];
}
@end
The interfaces for deck and hand have an NSMutableArray* cards and cards has an int value as instance variables.
I still get the warning in the same place in main, and I get a segfault in showCards in hand.m
PS I'm also new here. Would it be better for me to ask a new question or post in this one? I also can't get my code to display right when I paste it into the "enter code here" thingy.....thanks guys!
