Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why do my iOS fonts look very pixelated? Best font for iOS7?

I pick Helvetica Neue UltraLight in IB, and it really looks pretty terrible. Is there a best setting for built in iOS fonts or are all the beautiful fonts all custom imports?

Best background color, font, shadow offset, size? That works for you, i.e, your favorite settings or fonts.

enter image description here

Simple label. iPad screen shot, non-retina.

like image 239
Edward Potter Avatar asked Nov 30 '22 11:11

Edward Potter


1 Answers

I had the same issue and i took me a couple of hours to find out. So the main issue is that the label or the label parent frame/center is using floating numbers. you can try this and this

My problem was that i have added shadow to parent layer and i had this line self.tabsView.layer.shouldRasterize = YES;
but after removing it the pixeled/blured effect was gone.

Hope it will help.

like image 104
Constantin Saulenco Avatar answered Dec 05 '22 13:12

Constantin Saulenco