我有一个表格视图,我在其中自定义了视图单元格,我想在它们上绘制阴影。我已经使用了视图的图层,但是如果我通过这种方式绘制阴影,我的 tableview 非常非常慢。这是代码:
UIView *foreground = [[UIView alloc] initWithFrame:CGRectMake(8., 8., 305, 290.)];
foreground.tag = kForegroundTag;
foreground.backgroundColor = [UIColor whiteColor];
/* Draw from here */
foreground.layer.shadowColor = [UIColor blackColor].CGColor;
foreground.layer.shadowOpacity = 0.7;
foreground.layer.shadowOffset = CGSizeMake(0., 1.);
foreground.layer.shadowRadius = 3.;
谢谢你的帮助