码迷,mamicode.com
首页 > 其他好文 > 详细

CGRectInset CGRectoffset UIEdgeInsetsInsetRect 这三个函数的使用情况

时间:2014-11-22 20:07:57      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   sp   div   2014   log   cti   

//CGRectInset  将原来的矩形放大或者缩小,正表示缩小,-表示放大。
CGRect rect= CGRectMake(20, 50, 100, 80);
 CGRect rect1=CGRectInset(rect, -10, 20);
 NSLog(@"%@",p(rect1));
//输出结果:2014-11-22 18:48:55.351 TestCGRectInset[8893:60b] {{10, 70}, {120, 40}}

 

//CGRectOffset 这个函数就是将原来矩形的坐标点变化一下,就是左上角点
CGRect rect= CGRectMake(20, 50, 100, 80);
CGRect rect1=CGRectOffset(rect, -10, 20);
NSLog(@"%@",p(rect1));
//输出结果:2014-11-22 18:51:58.217 TestCGRectInset[8913:60b] {{10, 70}, {100, 80}}

 

 //UIEdgeInsetsInsetRect 表示在原来的rect基础上根据边缘距离内切一个rect出来
CGRect rect= CGRectMake(20, 50, 100, 80);
UIEdgeInsets ed=UIEdgeInsetsMake(-3, -4, -5, -6);
CGRect  r=  UIEdgeInsetsInsetRect(rect, ed);
NSLog(@"%@",p(r));
//输出结果:2014-11-22 18:54:31.979 TestCGRectInset[8922:60b] {{16, 47}, {110, 88}}

综上总结:正的都是向内的方向,反之负的就表示向外扩展

CGRectInset CGRectoffset UIEdgeInsetsInsetRect 这三个函数的使用情况

标签:style   blog   color   使用   sp   div   2014   log   cti   

原文地址:http://www.cnblogs.com/liyang31tg/p/4115514.html

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