Hey Steve,
In this case, you are returning a regular integer (count returns just
a regular, scalar type). But you've declared your return value as id,
which is a typedef for a type of pointer. You either have to return an
actual integer, or wrap the return of count in an object like NSNumber.
/jason
On Jun 10, 2008, at 08:32 , Steven Hamilton wrote:
Hi folks, newbie here.
A quickie query on a warning.
Both returns in the following code give a 'warning: return makes
pointer from integer without cast'
- (id)outlineView:(NSOutlineView *)outlineView
numberOfChildrenOfItem:(id)item
{
if (!item) {
return [outlineTree count];
}
return [[outlineTree objectForKey:item] count];
I can't work out why. "count" returns an integer which I should be
able to return or does the return only send back a pointer to the
integer of which I should be casting earlier on?
_______________________________________________
Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/jason.coco
%40gmail.com
This email sent to [EMAIL PROTECTED]
_______________________________________________
Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com
This email sent to [EMAIL PROTECTED]