how can i achieve font like this as shown in image.
UILabel Font Problem
832 Views Asked by Mobile Developer iOS Android At
3
There are 3 best solutions below
0

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.
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.