美文网首页
iOS中ViewControl 中添加 ViewControl

iOS中ViewControl 中添加 ViewControl

作者: zero_zql | 来源:发表于2016-05-31 11:17 被阅读403次

    ViewControl 中添加 ViewControl

    今天正好遇到一个小困惑就是如果在ViewControl 中添加 ViewControl,经过查找得知原来就是直接 addSubview 其ViewControl.view 即可

    下面是相关的代码,可以在oneVC中先设置个颜色可方便看出其效果

    OneViewController *oneVC = [OneViewController new];
    
    UIView *myView= oneVC.view;
    CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"position"];
    
    // 动画选项的设定
    animation.duration = 3; // 持续时间
    animation.repeatCount = 1; // 重复次数
    
    // 起始帧和终了帧的设定
    animation.fromValue = [NSValue valueWithCGPoint:myView.layer.position]; // 起始帧
    animation.toValue = [NSValue valueWithCGPoint:CGPointMake(0, 0)]; // 终了帧
    
    // 添加动画  
    [myView.layer addAnimation:animation forKey:@"remove"];
    
    [self.view addSubview:oneVC.view];

    相关文章

      网友评论

          本文标题:iOS中ViewControl 中添加 ViewControl

          本文链接:https://www.haomeiwen.com/subject/hhvcdttx.html