码迷,mamicode.com
首页 > 移动开发 > 详细

ios view的属性

时间:2015-04-11 11:50:25      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:ios开发   ios   动画   uiview   

UIView提供了大量管理视图的方法

//加一个视图到一个视图里面
addSubview:
//将一个视图移到前面
bringSubviewToFront:
//将一个视图推送到背后
sendSubviewToBack:
//把视图移除
removeFromSuperview
//插入视图 并指定索引
insertSubview:atIndex:
//插入视图在某个视图之上
insertSubview:aboveSubview:
//插入视图在某个视图之下
insertSubview:belowSubview:
//交换两个位置索引的视图
exchangeSubviewAtIndex:withSubviewAtIndex:

建立UIView动画块

CGContextRef context = UIGraphicsGetCurrentContext();
//标记动画开始
[UIView beginAnimations:nil context:context];
//定义动画加速或减速的方式
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
//定义动画的时长 1秒
[UIView setAnimationDuration:1.0];
//中间处理 位置变化,大小变化,旋转,等等的
[[self.view viewWithTag:999] setAlpha:1.0f];
//标志动画块结束
[UIView commitAnimations];
//还可以设置回调
[UIView setAnimationDelegate:self];
//设置回调调用的方法
[UIView setAnimationDidStopSelector:@selector(animationFinished:)];


  1. //将图层的边框设置为圆脚?  
  2. myWebView.layer.cornerRadius = 8;?   
  3. myWebView.layer.masksToBounds = YES;  
  4. //给图层添加一个有色边框?         
  5.  myWebView.layer.borderWidth = 5;?          
  6. myWebView.layer.borderColor = [[UIColor colorWithRed:0.52 green:0.09 blue:0.07 alpha:1] CGColor];?      
  7. }  

ios view的属性

标签:ios开发   ios   动画   uiview   

原文地址:http://blog.csdn.net/yangchen9931/article/details/44993187

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!