初心者の質問: UIImageView のサブクラスである新しいクラスを作成しました。メソッドを作成しようとしているときに、UIView プロパティを使用できないのはなぜですか?
-(id)initWithImage:(UIImage *)image
{
self = [super initWithImage:image];
if (self) {
UIRotationGestureRecognizer *rotationGestureRecognizer= [[UIRotationGestureRecognizer alloc]initWithTarget:self action:<#(SEL)#>];
[self addGestureRecognizer:rotationGestureRecognizer];
}
return self;
}
-(void) handleRotations: (UIRotationGestureRecognizer *) paramSender
{
self.transform
}
クラスが self.transform を認識できないのはなぜですか?