DaffodilGirl 2012-12-20 08:10 采纳率: 0%
浏览 4128
已采纳

移动UIView到另一个UIView中

我有一个UIViewController中包含了两个UIScrollViewscrollView1, scrollView2

scrollView1包含了很多UIViews,当用到其中一个UIView时我希望能移动到scrollView2中。

同时在用到UIView的时候,UIViewController会调用其中一个方法,view作为参数传递

  • 写回答

1条回答 默认 最新

  • LPPloveROU 2012-12-20 09:12
    关注
    [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 = convertPoint:destinationPointInSecondScrollView;
                         }];
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何获取烟草零售终端数据
  • ¥15 数学建模招标中位数问题
  • ¥15 phython路径名过长报错 不知道什么问题
  • ¥15 深度学习中模型转换该怎么实现
  • ¥15 HLs设计手写数字识别程序编译通不过
  • ¥15 Stata外部命令安装问题求帮助!
  • ¥15 从键盘随机输入A-H中的一串字符串,用七段数码管方法进行绘制。提交代码及运行截图。
  • ¥15 TYPCE母转母,插入认方向
  • ¥15 如何用python向钉钉机器人发送可以放大的图片?
  • ¥15 matlab(相关搜索:紧聚焦)