iPad 3 shouldRasterize = YES makes UILabel text cut off

Viewed 2299

I have a problem when setting shouldRasterize to YES on layer. On iPad3, the label.text has the text cut off from the bottom for about 1/5 of the size. Anyone know what's the problem is?.

    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;

On iPad 2, it works fine.

3 Answers

Swift 4 version

cellView.layer.rasterizationScale = UIScreen.main.scale
Related