show/hide this revision's text 3 added 7 characters in body

The problem, based on the extra code you've posted below, is that you have two methods with the same name but whose parameters don't match, namely - (id)init: (Deck*)deck and - (id)init: (int)newvalue.

Normally this isn't a problem, but in this case the types are structurally different - a pointer and an int. The compiler can distinguish which you mean based on the type of the receiver, but this only works when it has its static type. For example, if you had:

Hand *h = [Hand alloc];
h = [h init: deck];

It would stop giving you a warning. This is very unusual code, though - alloc and init almost always go on the same line.

Since alloc returns an id, and not a Hand it doesn't know that the init call in [[Hand alloc] init:deck] is to a Hand, and not a Card. See Apple's Docs on static typing for more information about that.

The easiest (and a reasonable) solution is to rename the methods to indicate the type of the argument. For example, you could use initWithCardValue: and initWithDeck:.

EDIT: Also, yes, heed the warnings suggestions from the other posts about the proper behavior inside the init method. (It's not causing the warning, but it is may be causing the segfault.)

show/hide this revision's text 2

The problem, based on the extra code you've posted below, is that you have two methods with the same name but whose parameters don't match, namely - (id)init: (Deck*)deck and - (id)init: (int)newvalue.

Normally this isn't a problem, but in this case the types are structurally different - a pointer and an int. The compiler can distinguish which you mean based on the type of the receiver, but this only works when it has its static type. For example, if you had:

Hand *h = [Hand alloc];
h = [h init: deck];

It would stop giving you a warning. This is very unusual code, though - alloc and init almost always go on the same line.

Since alloc returns an id, and not a Hand it doesn't know that the init call in [[Hand alloc] init:deck] is to a Hand, and not a Card. See Apple's Docs on static typing for more information about that.

The easiest (and a reasonable) solution is to rename the methods to indicate the type of the argument. For example, you could use initWithCardValue: and initWithDeck:.

EDIT: Also, yes, heed the warnings from the other posts about the proper behavior inside the init method. (It's not causing the warning, but it is causing the segfault.)

show/hide this revision's text 1

The problem is that you have two methods with the same name but whose parameters don't match, namely - (id)init: (Deck*)deck and - (id)init: (int)newvalue.

Normally this isn't a problem, but in this case the types are structurally different - a pointer and an int. The compiler can distinguish which you mean based on the type of the receiver, but this only works when it has its static type. Since alloc returns an id, it doesn't know that the init call in [[Hand alloc] init:deck] is to a Hand, and not a Card.

The easiest (and a reasonable) solution is to rename the methods to indicate the type of the argument. For example, you could use initWithCardValue: and initWithDeck:.