Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iPad 3 shouldRasterize = YES makes UILabel text cut off

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.

like image 932
tipsywacky Avatar asked Aug 01 '12 11:08

tipsywacky


2 Answers

Set the rasterization's scale, because of iPad3's retina display:

[cellview.layer setRasterizationScale:[[UIScreen mainScreen] scale]];
like image 83
Templar Avatar answered Sep 18 '22 15:09

Templar


Swift version:

cellview.layer.rasterizationScale = UIScreen.main.scale
like image 38
Arsen Avatar answered Sep 19 '22 15:09

Arsen