gpt4 book ai didi

iphone - Objective-C,协议(protocol)和子类

转载 作者:太空狗 更新时间:2023-10-30 03:26:33 24 4
gpt4 key购买 nike

假设我定义了以下协议(protocol):

//用户界面对象的基本协议(protocol):

@protocol UIObjectProtocol <NSObject>
@property (assign) BOOL touchable;
@end

//由 holder 对象持有的用户界面对象的基本协议(protocol):

@protocol UIHeldObjectProtocol <UIObjectProtocol>
@property (readonly) id holder;
@end

以及以下类层次结构:

//用户界面对象的基类,它综合了 touchable 属性

@interface UIObject : NSObject <UIObjectProtocol> {
BOOL _touchable;
}
@end

@implementation UIObject
@synthesize touchable=_touchable;
@end

至此,一切正常。然后我创建一个名为 UIPlayingCardUIObject 子类。本质上,UIPlayingCard 符合 UIObjectProtocol,因为它的父类(super class)也这样做。

现在假设我希望 UIPlayingCard 符合 UIHeldObjectProtocol,所以我执行以下操作:

@interface UIPlayingCard : UIObject <UIHeldObjectProtocol> {
}
@end

@implementation UIPlayingCard
-(id)holder { return Nil; }
@end

请注意,UIPlayingCard 符合 UIHeldObjectProtocol,它可传递地符合 UIObjectProtocol。但是,我在 UIPlayingCard 中收到编译器警告:

warning: property 'touchable' requires method '-touchable' to be defined - use @synthesize, @dynamic or provide a method implementation

这意味着 UIPlayingCard 父类(super class)符合 UIObjectProtocol 未被继承(可能是因为 @synthesize 指令在 UIObject 实现范围)。

我是否有义务在 UIPlayingCard 实现中重新声明 @synthesize 指令?

@implementation UIPlayingCard
@synthesize touchable=_touchable; // _touchable now must be a protected attribute
-(id)holder { return Nil; }
@end

或者还有另一种方法可以消除编译器警告?会不会是糟糕设计的结果?

提前致谢

最佳答案

您评论说 _touchable 必须受到保护,但是您没有包含 @private 编译器指令,所以 _touchable 是 < em>已经受到保护。

在这种情况下 Clang 似乎没有给出这个警告,所以最直接的解决方案:

  • 将编译器从 GCC 更改为 Clang。

这也会带来很多附带好处,包括更容易理解的错误和警告消息。

这是 GCC 提示的一个错误。该实现实际上是继承的,因为您可以使用一个简单的 main 函数来验证 UIPlayingCardtouchable 属性。所以,你的第二个解决方案:

  • 忽略虚假警告。如果您的测试都没有失败,您还关心什么?

关于iphone - Objective-C,协议(protocol)和子类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5169167/

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