首页 > 代码库 > CGRectInset CGRectoffset UIEdgeInsetsInsetRect 这三个函数的使用情况
CGRectInset CGRectoffset UIEdgeInsetsInsetRect 这三个函数的使用情况
//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 这三个函数的使用情况
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。