Aron & Ken,
Yes thank you both that has been driving me crazy mostly because I
knew it was something stupid like that.
Thank you,
Mike Swan
"Change itself is not painful it is resistance to change that causes
pain."
___
Cocoa-dev mailing list (C
NSString *string = [NSString stringWithFormat:(@"array count
> = %i", [array count])]; // This gives the warning "passing argument 1 of
> 'stringWithFormat:' makes pointer from integer without a cast"
>
>
> Has something happened to NSString to
= %i",[array count]); // This works just
fine
NSString *string = [NSString stringWithFormat:(@"array count =
%i", [array count])]; // This gives the warning "passing argument 1
of 'stringWithFormat:' makes pointer from integer without a cast"
Has something ha
= %i",
[array count])]; // This gives the warning "passing argument 1 of
'stringWithFormat:' makes pointer from integer without a cast"
Has something happened to NSString to mess it up or am I just missing
something really obvious here?
Thanks,
Mike Swan
"Cha