0

我正在将我的项目从使用 Cocos2D v2.1 转换为 V3.0。这是一个 UIKit 项目,添加了 Cocos2D 作为子项目,并且导演在几个视图控制器中延迟加载。

我设法摆脱了所有编译器警告,它运行良好并且似乎可以很好地加载导演,但随后崩溃如下:

-[NSConcreteMutableAttributedString hasAttribute:]: unrecognized selector sent to instance 0xc4f8ff0
 *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSConcreteMutableAttributedString hasAttribute:]: unrecognized selector sent to instance 0xc4f8ff0'
*** First throw call stack:
(
    0   CoreFoundation                      0x0291a1e4 __exceptionPreprocess + 180
    1   libobjc.A.dylib                     0x026998e5 objc_exception_throw + 44
    2   CoreFoundation                      0x029b7243 -[NSObject(NSObject) doesNotRecognizeSelector:] + 275
    3   CoreFoundation                      0x0290a50b ___forwarding___ + 1019
    4   CoreFoundation                      0x0290a0ee _CF_forwarding_prep_0 + 14
    5                       0x0019d7d0 -[CCLabelTTF updateTexture] + 544
    6                        0x0019d546 -[CCLabelTTF visit] + 70
    7                       0x00181c86 -[CCNode visit] + 566
    8                        0x00181c86 -[CCNode visit] + 566
    9                       0x00202b9d -[CCDirectorIOS drawScene] + 381
    10                       0x00203fdc -[CCDirectorDisplayLink mainLoop:] + 92

断点在 CCLabelTTF 函数中停止- (BOOL) updateTexture

#ifdef __CC_PLATFORM_IOS

    // Font color
    if (![formattedAttributedString hasAttribute:NSForegroundColorAttributeName])

代码中只有一个 CCLabelTTF,我这样创建它:

self.scoreLabel = [CCLabelTTF labelWithString:NSLocalizedString(@"Score", @"") fontName:@"Marker Felt" fontSize:20 dimensions:CGSizeMake(100, 50)];
self.scoreLabel.horizontalAlignment = (CCTextAlignment)NSTextAlignmentRight;
scoreLabel.position = ccp(250,70);
[self addChild:scoreLabel z:1];

非常感谢任何帮助。我搜索了 Cocos2D 论坛和此处,但找不到与此问题类似的任何内容。

4

1 回答 1

0

啊……刚刚解决了。由于 Cocos2d 是一个子项目,因此我必须在目标-ObjC下包含标志Other Linker Flags。v2.1 没有必要这样做,但是那个版本没有使用该NSAttributedString+CCAdditions类别。

于 2014-05-24T21:08:56.070 回答