您可以尝试用核心图形方法进行瓷砖, 从此 < a href=" https://stackoverflow.com/ questions/669925/how-can-i-use- cgcontextdrawitedimage- to-tile-an-image" 来查看此代码。
CGSize imageViewSize = imageView.bounds.size;
UIGraphicsBeginImageContext(imageViewSize);
CGContextRef imageContext = UIGraphicsGetCurrentContext();
CGContextDrawTiledImage(imageContext, (CGRect){ CGPointZero, imageViewSize }, tileImage);
UIImage *finishedImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
它创建了标题图像。 您可以将图像设置为您的用户界面控制的背景 。
EDIT:
tintColor
is base for creating default gradient of segment control. So setting brown gradient image as tint color gives you black gradient.
To set gradient colors,
- subclass
uisegmentcontrol
class and override drawRect
method.
- Use
backgroundImage
and set proper image insets.