例如,我有一个UIViewController
包含 2UIScrollViews
的 , 。scrollView1
scrollView2
scrollView1
包含很多UIViews
,当点击其中一个时,UIViews
我希望它进入scrollView2
当点击UIView
属于 的a 时,将调用scrollView1
内部的方法并将作为参数传递。UIViewController
view
例如,我有一个UIViewController
包含 2UIScrollViews
的 , 。scrollView1
scrollView2
scrollView1
包含很多UIViews
,当点击其中一个时,UIViews
我希望它进入scrollView2
当点击UIView
属于 的a 时,将调用scrollView1
内部的方法并将作为参数传递。UIViewController
view
在该方法中,您应该编写如下内容:
[view removeFromSuperview];
[scrollView2 addSubview:view];
编辑:
对于动画移动,您应该尝试以下操作:
CGPoint originalCenter = [self.view convertPoint:view.center fromView:scrollView1];
[view removeFromSuperView];
[self.view addSubview:view];
view.center = originalCenter;
CGPoint destinationPointInSecondScrollView = ; // Set it's value
CGPoint finalCenter = [self.view convertPoint:destinationPointInSecondScrollView fromView:scrollView2];
[UIView animateWithDuration:0.3
delay:0
options:UIViewAnimationOptionCurveEaseInOut
animations:^{
view.center = finalCenter;
} completion:^(BOOL finished) {
[view removeFromSuperView];
[scrollView2 addSubview:view];
view.center = destinationPointInSecondScrollView;
}];
假设您将这两个滚动视图声明为属性:
- (void)viewDidLoad
{
[super viewDidLoad];
UITapGestureRecognizer *gesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(viewTapped:)]
for (UIView *view in self.scrollView1.subviews) {
[view addGestureRecognizer:gesture];
}
}
- (void)viewTapped:(UITapGestureRecognizer *)gesture
{
UIView *view = gesture.view;
[self moveToScrollView2:view];
}
- (void)moveToScrollView2:(UIView *)view
{
[view removeFromSuperview];
[self.scrollView2 addSubview:view];
}