我有一个阴影图像,我想在分组的 UITableView 部分的外边缘绘制。这是图像:
我可以获得代表我想要绘制的矩形的 UIBezierPath,但我不知道如何沿着矩形的路径重复图像。到目前为止,它只是用图像填充矩形:
UIImage *patternImg = [UIImage imageNamed:@"cellShadow"];
UIColor *fill = [UIColor colorWithPatternImage:patternImg];
[fill setFill];
CGRect aSectRect = [self rectForSection:0];
UIBezierPath *aSectPath = [self createRoundedPath:aSectRect];
[aSectPath fill];
这可能吗?我需要做什么?