Re: ObjC Method naming
Re: ObjC Method naming
- Subject: Re: ObjC Method naming
- From: Finlay Dobbie <email@hidden>
- Date: Mon, 28 May 2001 21:59:59 +0100
On Monday, May 28, 2001, at 09:26 pm, Nat! wrote:
But what really happens is that [myRect setWidth:10.0 height:15.0]
translates into
objc_msgSend( myRect, @selector( setWidth:height:), 10.0, 15.0);
and you should never write code that calls objc_msgsend directly :-)
-- Finlay