UIView

self.view.backgroundColor=[UIColor orangeColor];

    UIView *v1=[[UIView alloc]initWithFrame:CGRectMake(100100200200)];

    v1.backgroundColor=[UIColor purpleColor];

    [self.view addSubview:v1];

    UIView *v2=[[UIView alloc]initWithFrame:CGRectMake(100100300100)];

    v2.backgroundColor=[UIColor blackColor];

    [self.view addSubview:v2];

    UIView *v3=[[UIView alloc]initWithFrame:CGRectMake(1001005050)];

    v3.backgroundColor=[UIColor redColor];

    [self.view addSubview:v3];

    //v3添加到v1上面

    [self.view insertSubview:v3 aboveSubview:v1];

    //v3插到v1下面

    [self.view insertSubview:v3 belowSubview:v1];

    //v1带到最上层

    [self.view bringSubviewToFront:v1];

    //交换两个view

    [self.view insertSubview:v2 atIndex:0];

    [self.view insertSubview:v3 atIndex:1];

    [self.view exchangeSubviewAtIndex:0 withSubviewAtIndex:1];

    //发送到最底层

    [ self . view   sendSubviewToBack :v3];

 //缩放

    myview.transform=CGAffineTransformScale(myview.transform0.80.8);

    //动画

    [UIView animateWithDuration:7 animations:^{

//        //旋转

        myview.transform=CGAffineTransformRotate(myview.transformM_PI_4);

    }];

//    //移动

    [UIView animateWithDuration:7 animations:^{myview.transform=CGAffineTransformTranslate(myview.transform100400);}];

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值