views:

216

answers:

1

I'm trying to rotate an image about the bottom right corner. To do this I know I need to set the layer's anchorPoint, but I can't access it. I've included the QuartzCore framework in my project. To simplify the problem as much as possible, I've reduced the method to these three lines, which still throw the error "error: accessing unknown 'anchorPoint' component of a property" (line 2).

UIView *sqView = [[UIView alloc] init];
sqView.layer.anchorPoint = CGPointMake(1.0, 1.0);
[sqView release];

It must be something truly stupid. I've looked at other examples of this and they appear identical. What am I missing?

+4  A: 

have you added

#import <QuartzCore/QuartzCore.h>
Nithin
Thank you, that did it.
David Kanarek