This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
Fonts problem, typeface,windows nameā¦
First I am looking to get the typeface name of a font that isn't installed, it is just in a folder.
And second question is how to get the Windows name font like "arialblackno1.ttf" that have typeface "arialblack".
For the second question, you can try to look into the registry, key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts.
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
On iOS 14 custom fonts aren't loading properly. On iOS 13 works just fine. Does Apple make changes on installing custom fonts, or where can be the problem.
No Apple did not make changes for adding custom fonts in iOS 14.
Make sure your font files are added to your app target.
Make sure each font is listed under the custom fonts entry in your info.plist file.
This question already has answers here:
iOS: Programmatically add custom font during runtime
(4 answers)
Closed 4 years ago.
i have tried to add custom fonts in application at run time.
so i have added those .ttf files into the document directory.
Now i want to access those files with font name in my application.
so please Suggest how to add custom fonts in Application at run time.
Thanks.
I don't think you can do this. You need to have the font on compile time. Added in the resource and also it needs to be mentioned in info.plist.
Please see the below link from apple on how to add custom font in app. There is no way other then this.
https://developer.apple.com/documentation/uikit/text_display_and_fonts/adding_a_custom_font_to_your_app
This question already has answers here:
In iOS how can I remove languages from Localizable.strings with Xcode
(2 answers)
Closed 7 years ago.
I don't need it, but when I delete it, I got a compile error.
So is there a way to do that?
Uncheck the 'Base' checkbox on the right panel.
This question already has an answer here:
Where can I download Grails 1.1 from?
(1 answer)
Closed 8 years ago.
I am trying to download grails-1.1.1 from https://grails.org/downloads. But looks like I don't have access to http://dist.codehaus.org/grails/grails-bin-1.1.1.zip. Any suggestions?
You can get it from https://grails.org/dist/grails-bin-1.1.1.zip.
Be aware that 1.1.1 is very old and has long not been supported.
This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
Zip and UnZip a file programmatically in iphone?
I want to zip images and audio programmatically in my app.
How can I do that?
Try ZipKit. Put this as part of your build and then
#import <ZipKit/ZipKit.h>
After this you are good to go.