Blurry UILabel when added programmatically

删除回忆录丶 提交于 2019-11-28 19:32:22

Your label is blurry because the frame is using floating numbers.

To force integers value for your frame just do :

[loadingText setFrame:CGRectIntegral(loadingText.frame)];

You could also cast all your values composing your frame to int, but CGRectIntegral does all the job for you.

oskare

Apart from the float/int issue, calling setShouldRasterize on the parent view of the UILabel can also cause this problem to appear.

Legen Diary

For those of you that couldn't use the previous answers, I found that if I turned off the autoresizingmask feature it called the setShouldRasterize method.

[loadingText setTranslatesAutoresizingMaskIntoConstraints:NO];

thus if you comment this line out, it will display correctly

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!