I want to use custom Fonts in a mac desktop application. I am using XCode 6. is there any way after including custom fonts (.ttf files) in the resources folder and making necessary changes in info.plist file that these fonts will show up in IB? I know that there is something in iOS but I am looking for Mac OS X desktop applications
Custom fonts in Interface Builder XCode 6
365 Views Asked by Subrat At
1
There are 1 best solutions below
Related Questions in MACOS
- Error installing Nativescript on Mac M2 Sonoma 14.4.1
- macOS - Most secure way of a GUI SUDO_ASKPASS
- When using onDrag in SwiftUI on Mac how can I detect when the dragged object has been released anywhere?
- Why does Hugo generate different taxonomy-related HTML on different OS's?
- ZSH function parameters conundrum
- how to make read only file/directory in Mac writable
- macOS BigSur - Unable to run bundled php version or brew php 8
- 9 Digit Addresses in Hexadecimal System in MacOS
- MacOS Bash-Script: while read p and echo
- How to make a range for tail rows on a categorized table in Numbers with JXA scripts?
- Cannot build a basic project with curl on Mac (M2) for Raspberry Pi Pico
- How to recover deleted files from create vite react project
- Can't run built SFML project from Xcode template
- React Native - RealmJS - Linker command failed with exit code 1
- How can I manually add a keyboard shortcut to a Shortcut Action Service directly via the system files, without going through the System Prefs GUI?
Related Questions in OSX-YOSEMITE
- macOS 12.2.X (Monterey) as a developer account -- how can I "csrutil disable" all my APFS partitions?
- VS Code Stop Support for Yosemite Mac OS 10.10 as Electron fails
- Command not found after installing php
- What is the minimum version of macos Apple support?
- How do I copy to clipboard in Safari 8 on Yosemite OS X?
- existing bash script for deleting old backup files - how does it work?
- How to get FavIcon of the current tab in macos(OSX) Swift
- Error installing postgresql with homebrew
- Cannot install anything with brew, Error: Failed to download resource "git--html"
- Rails 5.1.7 Server Hangs On First Request
- Mac command batch not finding file
- Swift writing log file in yosemite
- How to debug webrtc osx project use xcode
- 'Emulator can not be opened because of a problem' AVD not working in Android Studio on Mac Yosemite
- Trying to install git-osx for the first time, download does nothing
Related Questions in XCODE6.3
- iOS Swift - Declare external function inside @IBAction func
- Xcode 7.2 - unable to execute command: Segmentation fault: 11
- iOS on archiving Found an unexpected Mach-O header code: 1918975009
- Google Analytics sdk creates issue in Xcode 6.3
- iphone_os_version_max_allowed >= 90000 returns false in Xcode 6.3.1
- After Update to OS X El Capitan and Xcode(6.3.1) simulator not listed
- Write into Settings bundle in Swift
- UIScrollview frame only updating correctly after scrolling
- Integrate Cocos2dx project within Swift Project (XCode 6.3)
- apple mach o linker error xcode 6.3
- How To detect Touch ID is Configured or not in device
- Custom fonts in Interface Builder XCode 6
- Dynamic resizing today widget
- Apple Mach-O linker error: Undefined symbols for architecture i386 Google Protobuf
- iOS 8 after hiding tab bar - reuse this space to display a text box
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Embedding the font in your app doesn't make it available in the storyboard/xib editor. You must install the font for system use to make it available in Interface Builder. The easiest way to do that is to drag the font files onto the Font Book app. Then you can choose the font in the font picker for your text field or label or whatever.
If you also want to embed the font in your app, you need to add Copy Files phase to your target to copy the font files into a subdirectory of your app's Resources directory, and set that path as the value of the
ATSApplicationFontsPathkey in your app'sInfo.plist. This answer explains the process in more detail.