有没有办法使用CoreGraphics在矩形内重复UIImage?它有点像http://www.raywenderlich.com/33496/core-graphics-tutorial-patterns,但我要使用从文件加载的图像。
答案 0 :(得分:2)
将图像用作图案颜色:
UIColor *color = [[UIColor alloc] initWithPatternImage:myImage];
someView.backgroundColor = color;
不完全是Core Graphics。如果你真的需要它,那就是CGColorCreateWithPattern
。设置的代码要多一些。