首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Iphone >

哪位高手帮小弟我编一个ios程序

2013-10-18 
谁帮我编一个ios程序?已知一个星星的定义:star1 [CCSprite spriteWithFile:@x_unfilled.png]star1.pos

谁帮我编一个ios程序?
已知一个星星的定义:
    star1 =[CCSprite spriteWithFile:@"x_unfilled.png"];
    star1.position = ccp(30+star1.contentSize.width, 240);
 
 
怎么设计能让它在触摸屏幕后出现(这张图片)。
我要完整的程序来观察一下代码的规律.   
ios 触摸屏 设计
[解决办法]
-(id)init{
      self.isTouchEnabled=YES;
}
-(BOOL)ccTouchBegan:(UITouch *)touch withEvent:(UIEvent *)event{
    CGPoint touchLocation = [self convertTouchToNodeSpace:touch];   
       star1 =[CCSprite spriteWithFile:@"x_unfilled.png"];
    star1.position = ccp(30+star1.contentSize.width, 240);
    CCLOG(@"%f,%f",touchLocation.x,touchLocation.y);
    return YES;
}

热点排行