设置shouldRasterize
到YES
图层时出现问题。在 iPad3 上,label.text 将文本从底部截去大约 1/5 的大小。有谁知道是什么问题?。
cellview.layer.cornerRadius = 12.0;
cellview.layer.borderColor = [UIColor blackColor].CGColor;
cellview.layer.borderWidth = 1.0;
cellview.layer.frame = rect;
cellview.layer.shouldRasterize =YES;
cellview.layer.masksToBounds = YES;
在 iPad 2 上,它运行良好。