IOS7 CGRectInset 该结构体的应用
CGRect CGRectInset (
CGRect rect,
CGFloat dx,
CGFloat dy
);
该结构体的应用是以原rect为中心,再参考dx,dy,进行缩放或者放大。
我们做一个示例来看看是不是这样的:
代码如下:
-(void) viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
UIGraphicsBeginImageContext(self.view.bounds.size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGRect currentRect = self.view.frame;
CGContextAddRect(context, currentRect);
CGContextDrawPath(context, kCGPathFillStroke);
CGRect original = CGRectMake(100, 100, 200, 200);
CGContextSetFillColorWithColor(context, [UIColor redColor].CGColor);
CGContextAddRect(context, original);
CGContextDrawPath(context, kCGPathFillStroke);
CGRect firstRect = CGRectInset(original, 10, 10);
CGContextSetFillColorWithColor(context, [UIColor blueColor].CGColor);
CGContextAddRect(context, firstRect);
CGContextDrawPath(context, kCGPathFillStroke);
CGRect secondRect = CGRectInset(firstRect, 10, 10);
CGContextSetFillColorWithColor(context, [UIColor greenColor].CGColor);
CGContextAddRect(context, secondRect);
CGContextDrawPath(context, kCGPathFillStroke);
CGRect thirdRect = CGRectInset(secondRect, 10, 10);
CGContextSetFillColorWithColor(context, [UIColor yellowColor].CGColor);
CGContextAddRect(context, thirdRect);
CGContextDrawPath(context, kCGPathFillStroke);
CGRect fourRect = CGRectInset(thirdRect, 10, 10);
CGContextSetFillColorWithColor(context, [UIColor grayColor].CGColor);
CGContextAddRect(context, fourRect);
UIImage *destImg = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageView *imgView = [[UIImageView alloc] initWithImage:destImg];
[self.view addSubview:imgView];
}
从这个示例可以看出其使用方法是如何使用的。
版权声明
由 durban创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 博客( https://www.gowhich.com ),版权所有,侵权必究。
本文永久链接: https://www.gowhich.com/blog/544
版权声明
由 durban创作并维护的 Gowhich博客采用创作共用保留署名-非商业-禁止演绎4.0国际许可证。
本文首发于 Gowhich博客( https://www.gowhich.com ),版权所有,侵权必究。
本文永久链接: https://www.gowhich.com/blog/544