- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我在我的应用程序中使用 Cocos2d-ObjC,最近将 Xcode 升级到 v9.3。现在我在“CCRendererBasicTypes.m”中有一个错误,上面写着
"Expected method to read dictionary element not found on object of type 'id<NSCopying>'"
其他一切正常。这是CCRendererBasicTypes的一部分
-(id)objectForKey:(id<NSCopying>)options
{
CCBlendMode *blendMode = [self rawObjectForKey:options];
if(blendMode) return blendMode;
// Normalize the blending mode to use for the key.
id src = (options[CCBlendFuncSrcColor] ?: @(GL_ONE));
id dst = (options[CCBlendFuncDstColor] ?: @(GL_ZERO));
id equation = (options[CCBlendEquationColor] ?: @(GL_FUNC_ADD));
NSDictionary *normalized = @{
CCBlendFuncSrcColor: src,
CCBlendFuncDstColor: dst,
CCBlendEquationColor: equation,
// Assume they meant non-separate blending if they didn't fill in the keys.
CCBlendFuncSrcAlpha: (options[CCBlendFuncSrcAlpha] ?: src),
CCBlendFuncDstAlpha: (options[CCBlendFuncDstAlpha] ?: dst),
CCBlendEquationAlpha: (options[CCBlendEquationAlpha] ?: equation),
};
// Create the key using the normalized blending mode.
blendMode = [super objectForKey:normalized];
// Make an alias for the unnormalized version
[self makeAlias:options forKey:normalized];
return blendMode;
}
错误出现在每一行
options[...]
最佳答案
将第一行改为
-(id)objectForKey:(NSDictionary*)options
关于objective-c - 读取字典元素的预期方法在 'id<NSCopying>' 类型的对象上找不到,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50165389/
我有一个单例对象来管理我的所有列表。我们将其称为 ListStore。 ListStore 有一个可变数组,用于存储列表。 @interface ListStore : NSObject @p
在 Swift 2.1 中,我应该如何创建一个符合 NSCopying 协议(protocol)的类? 我试过这个: class TargetValue: NSObject, NSCopying {
我已阅读 NSCopying 文档,但我仍然不确定如何实现所需的内容。 我的类(class)供应商: @interface Vendor : NSObject { NSString
1、几点说明 说到NSCopying和NSMutableCopying协议,不得不说的就是copy和mutableCopy。 如果类想要支持copy操作,则必须实现NSCopying协议,也就是
我正在尝试使用 swift NSCopy 来深度复制 GKGameModel 的对象,包括所有玩家及其钱包引用(包含代表现金的整数)。 使用 Swift Playgrounds,我尝试将 100 美元
我正在学习如何使用 NSCopy。我想复制我正在使用的自定义对象,它是 UIScrollView 中的 ImageView。 我正在尝试按如下方式实现 NSCopying 协议(protocol):
我正在将一些 Obj-C 代码转换为 Swift 并遇到了一个问题。这是 ObjC 代码: - (void)collisionBehavior:(UICollisionBehavior *)behav
我知道如果您的对象将用作 NSDictionary 中的键,则需要它。还有其他像这样的时候需要 NSCopying 吗? 如果我认为我的模型对象不需要符合 NSCopying,我可能错了吗? 最佳答案
我有一个小类层次结构,我在实现 copyWithZone: 时遇到了问题。我已阅读 NSCopying 文档,但找不到正确的答案。 参加两个类(class):Shape 和Square。正方形定义为:
我尝试在 Swift 中使用 NSDictionary ,但遇到了上述问题。我有以下格式的字典: let xyz: NSMutableDictionary = ["1":[1,2,3,4,"1","n
我正在尝试将我的应用程序从 8 升级到 Xcode 9.3.1,但出现以下错误: Expected method to read dictionary element not found on obj
我正在尝试复制一个对象,我已经实现了 NSCopying 协议(protocol),它看起来像这样: #MyActivity.h @interface MyActivity : MyModel {
如果我执行以下操作,编译器不会报错: id foo; [foo retain]; 但是,如果我执行以下操作,编译器会报错: id bar; [bar retain]; 具体来说,它说: Instanc
在某些情况下(例如,当 Hook 到内部进行测试时)能够创建不采用 NSCopying 的类实例的副本会很方便(不要实现 -copyWithZone:).如何实现? (注意:在类别中实现协议(prot
我有一个派生自 NSObject 的类。如何像[object copy]一样启用copy? 这是一个 iPhone 应用程序。 最佳答案 可以找到 Apple 关于 NSCopying 协议(prot
考虑两个类。第一个是 Vehicle,一个符合 NSCopying 的 NSObject 子类: class Vehicle : NSObject, NSCopying { var wheel
给定一个实现 NSCoding 的类,是否有理由不应该使用此模式来实现 copyWithZone: 的实现: -(instancetype)copyWithZone:(NSZone *)zone{
我可能在这里遗漏了一些明显的东西,但我正在我的一个对象上实现 NSCopying。该对象具有不通过 getter 公开的私有(private)实例变量,因为它们不应该在对象外部使用。 在我的 copy
我正在使用 Metal Performance Shader 设置神经网络,在编写权重初始化类时遇到了问题:Type 'MyWeights' does not conform to protocol
我正在尝试将以下代码转换为 Swift - (id)init { self = [super init]; if (self) { // Fetch Current C
我是一名优秀的程序员,十分优秀!