我不确定如何使用Objective C制作MWE,所以如果您需要其他任何内容,请告诉我。
我正在尝试运行有关构建iPhone应用程序的教程,并且已经陷入了定义函数的困境。我一直收到一条错误消息“使用未声明的标识符”。但是我相信我已经发起了这个功能。
在视图控制器中我有:
if (scrollAmount > 0) {
moveViewUp = YES;
[scrollTheView:YES];
}
else{
moveViewUp = NO;
}
使用其下的功能
- (void)scrollTheView:(BOOL)movedUp {
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.3];
CGRect rect = self.view.frame;
if (movedUp){
rect.origin.y -= scrollAmount;
}
else {
rect.origin.y += scrollAmount;
}
self.view.frame = rect;
[UIView commitAnimations];
}
我已在头文件中启动了该功能(我已导入)。
- (void)scrollTheView:(BOOL)movedUp;