我的代码构建并运行良好但我得到一个不完整的实现错误,如果我删除下面显示的浮点变量就会消失。谁能告诉我为什么这个变量会出错?
在我的.h文件中:
@property float dropTime;
在我的.m文件中:
@synthesize dropTime;
在viewDidLoad
我设置
dropTime=6.0;
然后在程序中我使用
- (void) drop
{
[UIView animateWithDuration:dropTime
delay:0
options:UIViewAnimationCurveLinear
animations:^{
item.frame = CGRectMake(100,520, 44, 47);
item.transform = CGAffineTransformMakeRotation(degreesToRadians(rotationDirection));
}
completion:^(BOOL finished) {
}];
}
谢谢!