如何在UITableViewCell的顶部绘制阴影? Tweetbot做到了,这是屏幕截图:

最佳答案

您可以使用CAGradientLayer。在cellForRowAtIndexPath中,在创建单元格时,创建一个渐变图层并将其添加到您的单元格中。注意,您必须导入QuartzCore框架。像这样

        //top shadow
        UIView *topShadowView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.tableView.bounds.size.width, 10)];
        CAGradientLayer *topShadow = [CAGradientLayer layer];
        topShadow.frame = CGRectMake(0, 0, self.tableView.bounds.size.width, 10);
        topShadow.colors = [NSArray arrayWithObjects:(id)[[UIColor colorWithWhite:0.0 alpha:0.25f] CGColor], (id)[[UIColor clearColor] CGColor], nil];
        [topShadowView.layer insertSublayer:topShadow atIndex:0];

        [cell.contentView addSubview:topShadowView];

10-06 02:56