CoreGraphics中有关CGRect相关函数笔记 1、CGRectInset 2、CGRectOffset ...
分类:
其他好文 时间:
2016-09-29 09:34:47
阅读次数:
144
1、CGRectInsetCGRect CGRectInset ( CGRect rect, CGFloat dx, CGFloat dy);该结构体的应用是以原rect为中心,再参考dx,dy,进行缩放或者放大。2、CGRectOffsetCGRect CGRectOffset( ...
分类:
其他好文 时间:
2015-12-22 19:20:04
阅读次数:
142
UIImageself.imageView.contentMode=UIViewContentModeCenter;//图片的内容模式[self.imageViewsetFrame:CGRectInset(self.bounds,5.0,5.0)];//带间距的插入//拉伸图片UIImage*nor...
分类:
其他好文 时间:
2015-12-18 21:14:47
阅读次数:
272
(1)CGRectInsetCGRect CGRectInset (CGRect rect,CGFloat dx,CGFloat dy);该结构体的应用是以原rect为中心,再参考dx,dy,进行缩放或者放大。举例如下:CGRectr1=CGRectMake(100,100,50,50);CGRec...
分类:
其他好文 时间:
2015-10-10 16:48:35
阅读次数:
279
1、CGRectInsetCGRect CGRectInset (CGRect rect,CGFloat dx,CGFloat dy);以原rect为中心,再参考dx,dy,进行缩放或者放大。2、CGRectOffsetCGRect CGRectOffset(CGRect rect,CGFloat ...
分类:
其他好文 时间:
2015-09-14 15:09:14
阅读次数:
128
iOS 中有两个有关Rect的方法我们对比这来看一下
CGRectInset,CGRectOffset
我们先看一看 官方给出的解释
/* Inset `rect' by `(dx, dy)' -- i.e., offset its origin by `(dx, dy)', and
decrease its size by `(2*dx, 2*dy)'. */...
分类:
移动开发 时间:
2015-07-31 12:58:42
阅读次数:
191
(1)CGRectInsetCGRect CGRectInset (CGRect rect,CGFloat dx,CGFloat dy);该结构体的应用是以原rect为中心,再参考dx,dy,进行缩放或者放大。举例如下:CGRectr1 =CGRectMake(100,100,50,50);CGRe...
分类:
其他好文 时间:
2015-04-29 15:01:08
阅读次数:
126
CGRectInsetReturns a rectangle that is smaller or larger than the source rectangle, with the same center point.返回一个使用同样的中点比源矩形小或大的矩形。DeclarationSWIFTf...
分类:
其他好文 时间:
2015-02-07 10:21:06
阅读次数:
130
公司设计问我这样效果好不好做,正好赶上公司断网了,我就研究了下,感觉CAGroupAnimation加上CAShapeLayer可以实现,就写了下。最后也实现了。
先来拆分小动画,1.背景框收缩2,placeholder组动画。
①shapeLayer
CGRect roundRect =
CGRectInset(self.bounds,
0, 10);
...
分类:
其他好文 时间:
2015-01-28 14:49:30
阅读次数:
285