ios - Importing external fonts to iPhone application -
this question has answer here:
- custom fonts in ios 7 8 answers
how can import external arabic , english fonts iphone application ?
for importing custom fonts in ios app
- add
.ttf
or.otf
font downloaded in application. - modify
plist
file i.e.application-info.plist
file. - add key "fonts provided application" in new row.
- and add each
.ttf
or.otf
file (of font) each line.
and in label
or textfield
yourlabel.font = [uifont fontwithname:@"your_font" size:15];
Comments
Post a Comment