我正在制作动画,并希望每次点击图像时toValue都会变大。我的代码可以工作(当然现在不行),但是如何使toValue成为一个整数呢?
我有这个:
int comboTapAnim = (comboTap / 10) + 1;
然后在动画中:
theAnimation.toValue = [comboTapAnim];
Xcode没有。我尝试过其他组合,但它必须是NSNumber,但我希望它是一个int。
答案 0 :(得分:1)
我找到了答案!!
[NSNumber numberWithInt:<#(int)#>]