UILabel Font Problem

832 Views Asked by At

how can i achieve font like this as shown in image.enter image description here

3

There are 3 best solutions below

1
On

By creating a custom control inheriting UIView. By implementing drawRect: and using image sprites for each Digit you can achieve this rendering. It is not that hard to do and there are many tutorials on the web.

Even with a ttf custom font you would not obtain these gradients and shadows. Another alternative but heavier and intended to games is cocos2d iOS framework which offers truetype font support.

0
On

BTW, iOS does offer custom ttf font support. You drag the fonts into your resources folder, and put a UIAppFonts array key in your info.plist, with the names of the font files. You don't get IB integration but you can call

[UIFont fontWithName:@"MyFontName" size:mysize];

where the name is the name of the font as seen when you open the ttf font viewer on the .ttf file. iOS also does offer shadowOffsets on labels.

But certainly, such a highly custom look is mostly likely done with images.

0
On

You can also use FontLabel check it out here - https://github.com/zynga/FontLabel