2012-12-26 45 views

回答

1

如果你對字符串fps_images.png全局搜索,你的IDE應該帶你真正接近茯苓CCDirector類以下行(2.0版本):

FPSLabel_ = [[CCLabelAtlas alloc] initWithString:@"00.0" charMapFile:@"fps_images.png" itemWidth:12 itemHeight:32 startCharMap:'.']; 
SPFLabel_ = [[CCLabelAtlas alloc] initWithString:@"0.000" charMapFile:@"fps_images.png" itemWidth:12 itemHeight:32 startCharMap:'.']; 
drawsLabel_ = [[CCLabelAtlas alloc] initWithString:@"000" charMapFile:@"fps_images.png" itemWidth:12 itemHeight:32 startCharMap:'.']; 

再看看CCLabelAtlas 。您的圖片必須是固定寬度的字體。

0

如果你想重複使用相同的圖像包括使比FPS顯示其他的東西下面的代碼應該工作:

CCLabelAtlas *scoreLabel = [[CCLabelAtlas alloc] initWithString:@"00.0" charMapFile:@"fps_images.png" itemWidth:12 itemHeight:32 startCharMap:'.']; 

然後將其設置爲你想要的數字是這樣工作的:

[scoreLabel setString:[NSString stringWithFormat:@"%d", (int)score]];