有一個陰影圖像,需要畫在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];
可以操作view的layer的shadow****系列屬性 來控制view顯示的陰影效果
//陰影顏色
view.layer.shadowColor = [[UIColor colorWithRed:1.0 green:0 blue:0 alpha:1] CGColor];
//陰影offset
view.layer.shadowOffset = CGSizeMake(0, 3);
//陰影path
view.layer.shadowPath = [UIBezierPath bezierPathWithRect:view.bounds].CGPath;;
//不透明度
view.layer.shadowOpacity = 0.6;
//陰影圓角半徑
view.layer.shadowRadius = 3;