我使用CGContext绘制线条,但我想让它的边缘模糊。我检查了阴影,但是在阴影中,线条的边缘并不柔和。平滑。请告诉我,我该怎么做才能使线条边缘模糊。
答案 0 :(得分:2)
我不完全确定通过模糊线条的“边缘”是什么意思,但你可以先尝试用更大的线宽绘制相同的路径,然后用渐进的更细和更暗的线绘制路径。
答案 1 :(得分:-1)
其他绘制线的方式..我希望这是有用的画线和增加线宽......
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
//// DRAW LINE....
UIView *lineView = [[[UIView alloc] initWithFrame:CGRectMake(10, 30, cell.contentView.bounds.size.width, 3)] autorelease];
//Replece the 3 and put the 5 for Increse the line Width
lineView.backgroundColor = [UIColor redColor];
lineView.autoresizingMask = 0x5f;
[cell.contentView addSubview:lineView];
}