Swift UIView 层次调整】的更多相关文章

Swift 中添加的UIView都是有层级的. 我们先添加三个看一看 let view1=UIView(frame: CGRectMake(10, 50, 200, 200)) let view2=UIView(frame: CGRectMake(60, 100, 200, 200)) let view3=UIView(frame: CGRectMake(110, 150, 200, 200)) view1.backgroundColor=UIColor.redColor() view2.bac…
UIView*view1=[[UIView alloc]initWithFrame:CGRectMake(10,30,300,30)]; view1.backgroundColor=[UIColor redColor]; [self.window addSubview:view1]; [view1 release];   UIView*view2=[[UIView alloc]init]; view2.frame=CGRectMake(30,20,50,100); view2.backgroun…
Swift - UIView的无损截图 效果 源码 // // UIView+ScreensShot.swift // Swift-Animations // // Created by YouXianMing on 16/9/5. // Copyright © 2016年 YouXianMing. All rights reserved. // import UIKit extension UIView { /** Get the view's screen shot, this functi…
// 设置边框的宽度 cell.layer.borderWidth = 1 // 设置边框的颜色 cell.layer.borderColor = UIColor.blackColor().CGColor // 设置UIView的边框为圆角和展现 cell.layer.cornerRadius = 10 //自动遮罩不可见区域,超出的不显示 cell.layer.masksToBounds = true cell.backgroundColor = UIColor.whiteColor()…
UIView.animateWithDuration(0.5, delay: 0.0, usingSpringWithDamping: 0.3, initialSpringVelocity: 0.0, options: UIViewAnimationOptions.CurveEaseInOut, animations: { () -> Void in //在这里面处理你的空间frame self.pressGoodsBtn.frame = CGRect(x: (SCREEN_WIDTH-200)…
将一个UIView显示在最前面只需要调用其父视图的 bringSubviewToFront()方法. 将一个UIView层推送到背后只需要调用其父视图的 sendSubviewToBack()方法. 用第二层子视图 换 第一层子视图的位置  self.view是第0层 [self.view exchangeSubviewAtIndex:1 withSubviewAtIndex:2];…
1,UIView常用的一些属性如下: frame:相对父视图的坐标和大小(x,y,w,h) bounds:相对自身的坐标和大小,所以bounds的x和y永远为0(0,0,w,h) center:相对父视图的中点坐标 transform:控制视图的放大缩小和旋转 superview:获取父视图 subviews:获取所有子视图 alpha:视图的透明度(0.0-1.0) tag:视图的标志(Int类型,默认等于0),设置后,可以通过viewWithTag方法拿到这个视图   2,UIView的常用…
1. /// 是否显示过广告 private lazy var isLoadAV = false /// 15秒宣传视频 private var play: AVPlayer? /// 宣传视频背景 private lazy var logoView : UIView = { let v = JYUIModel.createView() v.backgroundColor = UIColor.orange return v }() 2. /// 添加宣传视频 private func addPr…
代码如下: let page = UIView() page.frame = self.view.bounds //直接设置颜色 page.backgroundColor = UIColor.greenColor() //设置16进制的颜色 page.backgroundColor = UIColor(red: , green: , blue: , alpha: ) //设置背景图片(如果图片太小,会自动平铺) page.backgroundColor = UIColor.init(patter…
将一个UIView显示在最前面只需要调用其父视图的 bringSubviewToFront()方法. 将一个UIView层推送到背后只需要调用其父视图的 sendSubviewToBack()方法.…