CCCallFunc, CCCallFuncN, CCCallFuncND 三者的区别

来源:网络 责任编辑:栏目编辑 发表时间:2013-07-01 03:17 点击:

1.CCCallFunc 只能调用不带参数的回调方法

2.CCCallFuncN 可以带一个 参数:

(id)sender
3.CCCallFuncND 可以带两个参数 (第二个参数的类型可以是任意类型):

(id)sender batchNode:(CCSpriteBatchNode*)batchNode

 

直接上用例(sprite动画一次性播放以后将自己从父节点移除并销毁):

- (CCSprite*) addOneOffAnimSprite:(CCNode*)parent
                         position:(CGPoint)position
                         animName:(NSString*)animName
                       startIndex:(int)startIndex
                         endIndex:(int)endIndex
                            delay:(float)delay
{
    CCSpriteFrameCache *frameCache = [CCSpriteFrameCache sharedSpriteFrameCache];
   
    // 1.缓冲sprite帧和纹理
    NSString *spriteFrameCacheName = [NSString stringWithFormat:@"%@.plist", animName];
    [frameCache addSpriteFramesWithFile:spriteFrameCacheName];
   
    // 2.创建一个精灵批处理结点
    NSString *spriteSheetName = [NSString stringWithFormat:@"%@.png", animName];
    CCSpriteBatchNode *spriteBatchNode = [CCSpriteBatchNode batchNodeWithFile:spriteSheetName];
    [parent addChild:spriteBatchNode z:2];
   
    // 3.收集帧列表
    NSMutableArray *frames = [NSMutableArray array];
    for(int i = startIndex; i < endIndex+1; ++ i) {
        NSString *frameName = [NSString stringWithFormat:@"%@%d.png", animName, i];
        CCSpriteFrame *spriteFrame = [frameCache spriteFrameByName: frameName];
        [frames addObject: spriteFrame];
    }
   
    // 4.创建动画对象
    CCAnimation *animation = [CCAnimation animationWithFrames:frames delay:delay];
    id action = [CCAnimate actionWithAnimation:animation restoreOriginalFrame:NO];
    id callFunc = [CCCallFuncND actionWithTarget:self selector:@selector(removeSprite:batchNode:) data:spriteBatchNode];
    id animSequence = [CCSequence actions:action, callFunc, nil];
   
    // 5.创建 sprite 并且让它 run 动画 action~
    NSString *fristFrameName = [NSString stringWithFormat:@"%@%d.png", animName, startIndex];
    CCSprite *animSprite = [CCSprite spriteWithSpriteFrameName:fristFrameName];
    [animSprite setPosition:position];
   
    [animSprite runAction:animSequence];
    [spriteBatchNode addChild:animSprite];
    return animSprite;
}
- (void) removeSprite:(id)sender batchNode:(CCSpriteBatchNode*)batchNode {    // 由 CCCallFuncND 调用~
    CCSprite *animSprite = (CCSprite*)sender;
    [batchNode removeChild:animSprite cleanup:YES];
}


摘自 yang3wei的专栏

    相关新闻>>

      发表评论
      请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
      用户名: 验证码:点击我更换图片
      最新评论 更多>>

      推荐热点

      • Lexical or Preprocessor Issue 'xxx.h
      • ios学习笔记(二)xcode 4.3.2下实现基本交互
      • ios版本的helloworld
      • iphone(object-c) 内存管理(3) 有效的内存管理 前半部分
      • ios学习笔记(一)xcode 4.3.2下创建第一个ios项目
      • IOS类似iphone通讯录TableView的完整demo【附源码】
      • UITableView一些方法
      • [iPhone中级]iPhone团购信息客户端的开发 (二)
      • iphone(object-c)内存管理(1)
      网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
      Copyright © 2008-2015 计算机技术学习交流网. 版权所有

      豫ICP备11007008号-1