shadowOffset + CornerRadius TableView

时间:2012-01-02 19:38:29

标签: iphone objective-c uitableview ios5

我正在尝试将阴影和角半径放到tableView上。 cornerRadius工作正常但shadowOffset不起作用:

CGRect shadowFrame = self.mainTableView.layer.bounds;
CGPathRef shadowPath = [UIBezierPath bezierPathWithRect:shadowFrame].CGPath;
self.mainTableView.layer.shadowPath = shadowPath;
self.mainTableView.layer.shadowColor = [UIColor blackColor].CGColor;
self.mainTableView.layer.shadowOffset = CGSizeMake(0, 1);
self.mainTableView.layer.shadowOpacity = 4.0;
self.mainTableView.layer.shadowRadius = 7.0;

有什么想法吗?

2 个答案:

答案 0 :(得分:1)

你试过吗?

self.mainTableView.layer.masksToBounds = NO;

答案 1 :(得分:0)

基本上要实现这一点,您需要使用两个视图。

请参阅此链接:Why masksToBounds = YES prevents CALayer shadow?