gpt4 book ai didi

ios - 属性在 UIView 类中不起作用

转载 作者:行者123 更新时间:2023-11-29 10:53:49 25 4
gpt4 key购买 nike

初学者问题:我创建了一个新类,它是 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 为什么会这样?

最佳答案

UIImage 不是继承自 UIView,而是继承自 NSObject。你应该继承UIImageView相反。

看看 UIKit Framework Class Diagram查看类继承。

关于ios - 属性在 UIView 类中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19348162/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com