Re: What can I do with an NSRange in Objective-C?
Re: What can I do with an NSRange in Objective-C?
- Subject: Re: What can I do with an NSRange in Objective-C?
- From: Jerry Krinock <email@hidden>
- Date: Sun, 08 Feb 2004 15:41:07 -0800
on 04/02/08 14:35, mmalcolm crawford at email@hidden wrote:
Thanks, Malcolm, I get it now.
I had already looked at the docs you suggested, but it just seemed sinful to
be accessing members directly of something whose name begins with "NS". So,
all NS are not objects.
Jerry
>
In Obj-C, NSRange is a structure, not an object:
>
>
typedef struct _NSRange
>
{
>
unsigned int location;
>
unsigned int length;
>
} NSRange;
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.