Featured post
cocoa touch - ttf font not available for iPhone in interface builder or simulator -
i added font file (.ttf) xcode project, resources. also, added uiappfonts in info.plist.
when want use font though, don't see choice in ib.
after installing font on system, started seeing in ib, still - changing doesn't change - default system font displayed in interface builder in iphone emulator.
are there steps more should able use own font?
to use custom fonts ios have set them programmatically.
for example, suppose have font file called swellfont.ttf add project. go app-info.plist file , add full name of file next index of array keyed uiappfonts, mention.
<key>uiappfonts</key> <array> <string>swellfont.ttf</string> </array>
then, use font:
label.font = [uifont fontwithname:@"swellfont" size:12];
assuming label uilabel , swellfont.ttf not protected. it's important note uifont's fontwithname not referring filename, instead wanting actual name of font. if open font fontforge can see information selecting element > font info menu bar. there cleverer ways find information out.
- Get link
- X
- Other Apps
Comments
Post a Comment