Сбой приложения iPhone при вызове self.addChild в подклассе CCSprite..?
Я скачал ABC с открытым исходным кодом и превратить исходный код в cocos2d 1.01. Теперь у меня проблемы с инициализацией Sprite Subclass. (мой подкласс - @interface OrbSprite: CCSprite)
Этот код представляет собой бесконечный цикл и более старую версию cocos2d.
-(id) init {
self = [super init];
if (self)
{
[self initWithFile:@"bubble1.png"];
Animation *bub = [Animation animationWithName:@"bubble" delay:0 images:@"bubble1.png", @"bubble2.png", nil];
self.bubble = bub;
[bub release];
[self addAnimation:bubble];
Label *l = [[Label alloc] initWithString:@"" dimensions:CGSizeMake(45, 45) alignment:UITextAlignmentCenter
fontName:@"Arial Rounded MT Bold" fontSize:18];
self.label = l;
[l release];
}
return self; }
Я ищу решение И можно решить, изменив имя метода init.
-(id) initWithBubbleImage {
if ((self = [super initWithFile :@"bubble1.png"]))
{
NSLog(@"OrbSprite init in if self Method");
bubblea = [NSArray arrayWithObjects:@"bubble1.png",@"bubble2.png",nil];
bub = [CCAnimation animationWithFrames:bubblea delay:0 ];
[[CCAnimationCache sharedAnimationCache] addAnimation:bub name:@"bubbleAnim"];
self.bubble = bub;
[bub release];
label = [[CCLabelTTF alloc] initWithString:@"" dimensions:CGSizeMake(45, 45) alignment:UITextAlignmentCenter
fontName:@"Arial Rounded MT Bold" fontSize:18];
}
return self; }
???? Проблема в том, что когда уже изменилось имя инициализации, я обнаружил в "- (void) setLabelStr: (NSString ) str" в том же подклассе была ошибка addChild: в области отладки.. "** Ошибка подтверждения в -[OrbSprite addChild:] "и" Завершение работы приложения из-за неперехваченного исключения "NSInternalInconsistencyException", причина: "Аргумент должен быть не нулевым" "
Это метод в том же подклассе
- (void) setLabelStr:(NSString *) str {
[label setString:str];
[self addChild:label];
[label setAnchorPoint:ccp(0, 13)]; }
Кто-нибудь, помогите мне, пожалуйста....... Большое спасибо.
================================================== ===================
РЕДАКТИРОВАТЬ - РЕДАКТИРОВАТЬ - РЕДАКТИРОВАТЬ - РЕДАКТИРОВАТЬ - РЕДАКТИРОВАТЬ - РЕДАКТИРОВАТЬ
Я сделал это в ответ. но все равно не работает Слушай, это код.h и.m
OrbSprite.h
это код
#import "cocos2d.h"
@interface OrbSprite : CCSprite
{
CCLabelTTF *label;
CCAnimation *bubble;
BOOL isBubble;
BOOL isHidden;
int order;
CCSequence *popSequence;
}
@property (nonatomic, retain) CCLabelTTF *label;
@property (nonatomic, retain) CCSequence *popSequence;
@property (nonatomic, retain) CCAnimation *bubble;
@property (nonatomic, retain) NSArray *bubblea;
@property (readwrite) BOOL isBubble;
@property (readwrite) BOOL isHidden;
@property (readwrite) int order;
-(id)initWithBubbleImage;
- (void) pop;
- (void) setLabelStr:(NSString *) str;
- (void) showBubble;
- (void) reset;
@end
OrbSprite.m
это код
#import "OrbSprite.h"
@implementation OrbSprite
@synthesize bubble;
@synthesize label;
@synthesize isBubble;
@synthesize isHidden;
@synthesize popSequence;
@synthesize order;
@synthesize bubblea;
-(id) initWithBubbleImage {
if ((self = [super initWithFile:@"bubble1.png"]))
{
bubblea = [NSArray arrayWithObjects:@"bubble1.png",@"bubble2.png",nil];
bubble= [CCAnimation animationWithFrames:bubblea delay:0 ];
[[CCAnimationCache sharedAnimationCache] addAnimation:bub name:@"bubbleAnim"];
label = [[CCLabelTTF alloc] initWithString:@"" dimensions:CGSizeMake(45, 45)
alignment:UITextAlignmentCenter fontName:@"Arial Rounded MT Bold" fontSize:18];
}
return self;
}
- (void) pop {
isBubble = NO;
popSequence = [CCSequence actions:[CCScaleTo actionWithDuration:.1 scale:.5],
[CCScaleTo actionWithDuration:.1 scale:2], [CCCallFunc actionWithTarget:self
selector:@selector(finishedPopSequence)], nil];
[self runAction:popSequence];
}
- (void) finishedPopSequence {
self.scale = 1;
[self setDisplayFrameWithAnimationName:@"bubble" index:0]; }
- (void) reset {
self.scale = 1;
[self setDisplayFrameWithAnimationName:@"bubble" index:0]; }
- (void)showBubble {
isBubble = YES;
[self removeChild:label cleanup:NO];
[self setDisplayFrameWithAnimationName:@"bubbleAnim" index:1];
self.scale = .5;
id Orbshowscale = [CCScaleTo actionWithDuration:1 scale:1.5];
id Orbshowscale2= [CCScaleTo actionWithDuration:.1 scale:1];
[self runAction:[CCSequence actions:Orbshowscale,Orbshowscale2 , nil]]; }
- (void) setLabelStr:(NSString *) str {
[label setString:str];
[self addChild:label]; //<<< *** Assertion failure in -[OrbSprite addChild:]
[label setAnchorPoint:ccp(0, 13)]; }
@end
Я уже исправил проблему с переизданием, но она все еще не работает..
Также обнаружена такая же проблема
*** Ошибка подтверждения в - [OrbSprite addChild:]
*** Завершение работы приложения из-за необработанного исключения "NSInternalInconsistencyException", причина: "Аргумент должен быть не нулевым"
Спасибо всем, кто любезно...
3 ответа
Выглядит так, как будто вы перевыпускаете переменную "bub" в вашем методе init. Вы не создаете его с помощью метода alloc или create, поэтому не следует его освобождать.
Вы назначили bub
в self.bubble
а затем вы отпускаете bub
, Оба указывают на один и тот же адрес. То же самое происходит для self.label
, Попробуйте это так:
-(id) init {
self = [super init];
if (self)
{
[self initWithFile:@"bubble1.png"];
Animation *bub = [Animation animationWithName:@"bubble" delay:0 images:@"bubble1.png", @"bubble2.png", nil];
self.bubble = bub;
//[bub release]; <-- This shouldn't be done
[self addAnimation:bubble];
Label *l = [[Label alloc] initWithString:@"" dimensions:CGSizeMake(45, 45) alignment:UITextAlignmentCenter
fontName:@"Arial Rounded MT Bold" fontSize:18];
self.label = l;
//[l release]; <-- This shouldn't be done
}
return self; }
РЕДАКТИРОВАТЬ- Попробуйте это-
[self addChild:self.label]; //<<< *** Assertion failure in -[OrbSprite addChild:]