I want to display HTML with the Malayalam font in my webview. If I install that font in my mac and load it in any browser, I can see the text in that font. Can I install a font on an iOS device and load HTML with that font in my webview?
Asked
Active
Viewed 455 times
0
-
Do you want to deliver this font as part of a web site or an app? – sschale Mar 03 '16 at 04:51
-
http://stackoverflow.com/questions/14376941/how-to-use-custom-fonts-in-iphone-sdk . Link may help u....!!! – Yagnesh Dobariya Mar 03 '16 at 04:51
-
@sschale: For app only – Aneesh Asokan Mar 04 '16 at 05:36
2 Answers
0
You have to include the font as part of your bundle resources and then specify the font name in the Info.plist file under Fonts provided by application
property.

Pradeep K
- 3,671
- 1
- 11
- 15
-
These all I tried already. plist is not helping... But it is possible if we add its location in css – Aneesh Asokan Mar 04 '16 at 05:38
-
Can you point me to the font location where you got the malayalam font and some sample text that you put in the iOS app? – Pradeep K Mar 04 '16 at 05:50
0
Try to load custom Fonts with a local CSS with the following steps
- Add your Font to the App...make sure that the file is targeted properly to the Application
- Then add your Font to your App-Info.plist
Run the following code to check which name the font/fontfamily has for the System.
NSLog(@"Available fonts: %@", [UIFont familyNames]);
Copy that name and use them in your CSS as follows...@font-face is not needed
body { font-family:"Liberation Serif"; }

Sreeraj VR
- 1,524
- 19
- 35