将一个小图片平铺到大范围内

CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextSaveGState(context);

    

    CGRect bounds = self.bounds;

    

    UIBezierPath * path = [UIBezierPath bezierPathWithRect:bounds];

    

    CGContextAddPath(context, [path CGPath]);

    CGContextClip(context);

    

    CGContextSetBlendMode(context, kCGBlendModeMultiply);

    UIImage * noise = [UIImage imageNamed:@"noise-tile.png"];

    [noise drawAsPatternInRect:bounds];

    

    CGContextRestoreGState(context);

你可能感兴趣的:(Path)