Estoy tratando de abrirme camino a través de un tutorial de Objective-C. En el libro hay este ejemplo:Objective-C getter/setter
@interface
{
int width;
int height;
XYPoint *origin;
}
@property int width, height;
pensé: ". Bueno no hay captador/definidor de objeto Xypoint El código funciona aunque" Ahora voy a responder mi propia pregunta :).
Yo piensa que es porque "origen" es un puntero ya, y qué está sucediendo bajo el capó con el "ancho" y "alto", es que no te va crear un puntero a ellos ..
Am estoy bien, o estoy hablando BS :)?
Simplemente no lo entiendo. aquí es principal:
#import "Rectangle.h"
#import "XYPoint.h"
int main (int argc, char *argv[])
{
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
Rectangle *myRect = [[Rectangle alloc] init];
XYPoint *myPoint = [[XYPoint alloc] init];
[myPoint setX: 100 andY: 200];
[myRect setWidth: 5 andHeight: 8];
myRect.origin = myPoint;
NSLog (@"Rectangle w = %i, h = %i",
myRect.width, myRect.height);
NSLog (@"Origin at (%i, %i)",
myRect.origin.x, myRect.origin.y);
NSLog (@"Area = %i, Perimeter = %i",
[myRect area], [myRect perimeter]);
[myRect release];
[myPoint release];
[pool drain];
return 0;
}
Y aquí está el objeto Rectangle:
#import "Rectangle.h"
#import "XYPoint.h"
@implementation Rectangle
@synthesize width, height;
-(void) setWidth: (int) w andHeight: (int) h
{
width = w;
height = h;
}
- (void) setOrigin: (XYPoint *) pt
{
origin = pt;
}
-(int) area
{
return width * height;
}
-(int) perimeter
{
return (width + height) * 2;
}
-(XYPoint *) origin
{
return origin;
}
@end
Lo que yo no entiendo es esta línea en principal: myRect.origin = myPoint;
no hice un regulador para ello ..
Por cierto, gracias para su respuesta rápida