不完整的实现错误

时间:2012-04-16 14:45:17

标签: objective-c ios

我的代码构建并运行良好但我得到一个不完整的实现错误,如果我删除下面显示的浮点变量就会消失。谁能告诉我为什么这个变量会出错?

在我的.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) {
                          }];
}

谢谢!

0 个答案:

没有答案