正如您所看到的,他们没有使用整页滑动,只有一半。
请检查这两个屏幕拍摄
由于
答案 0 :(得分:0)
似乎是基于touchesBegan:
和touchesMoved:
方法的基于手势的低级作品。
答案 1 :(得分:0)
只需像这样创建一个UITapGesture
UITapGestureRecognizer *tapGestureRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTapFrom:)];
在这里做点什么来隐藏你...
- (void) handleTapFrom: (UITapGestureRecognizer *)recognizer
{
//Code to handle the gesture
}
答案 2 :(得分:0)
可能是一切:
答案 3 :(得分:0)
您可以使用简单的视图动画。
-(IBAction)tabPressed:(id)sender
{
if([sender isSelected])
{
sender.selected=NO;
[UIView beginAnimations:@"animation" context:NULL];
[UIView setAnimationDuration:0.5];
//set here frame to go down
[UIView commitAnimations];
}
else
{
sender.selected=YES;
[UIView beginAnimations:@"animation" context:NULL];
[UIView setAnimationDuration:0.5];
//set here frame to go up
[UIView commitAnimations];
}
}