从int

时间:2015-06-11 19:22:40

标签: xcode integer cabasicanimation

我正在制作动画,并希望每次点击图像时toValue都会变大。我的代码可以工作(当然现在不行),但是如何使toValue成为一个整数呢?

我有这个:

int comboTapAnim = (comboTap / 10) + 1;

然后在动画中:

theAnimation.toValue = [comboTapAnim];

Xcode没有。我尝试过其他组合,但它必须是NSNumber,但我希望它是一个int。

1 个答案:

答案 0 :(得分:1)

我找到了答案!!

[NSNumber numberWithInt:<#(int)#>]