On Tuesday, March 2, 2004, at 07:36 AM, reuss wrote:


if I have a class named someClass and I put in a button and define a
target for this very button as following:
[myButton setTarget: self];

in this case, self means someClass or myButton?


Self would be the instance of someClass that received the message 'someMethod':


@implementation someClass

- someMethod
{
  [myButton setTarget: self];
}

@end



_______________________________________________
Help-gnustep mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/help-gnustep

Reply via email to