Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/morizotter/SwiftFontName
OS font complements library. Localized font supported.
https://github.com/morizotter/SwiftFontName
Last synced: about 2 months ago
JSON representation
OS font complements library. Localized font supported.
- Host: GitHub
- URL: https://github.com/morizotter/SwiftFontName
- Owner: morizotter
- License: mit
- Archived: true
- Created: 2015-07-18T09:48:34.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-04-01T14:00:12.000Z (almost 6 years ago)
- Last Synced: 2024-11-16T09:34:59.383Z (2 months ago)
- Language: Swift
- Homepage: https://github.com/morizotter/SwiftFontName
- Size: 464 KB
- Stars: 113
- Watchers: 6
- Forks: 15
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ios - SwiftFontName - OS font complements library. Localized font supported. (Text / Font)
- awesome-ios-star - SwiftFontName - OS font complements library. Localized font supported. (Text / Font)
- awesome-swift-cn - SwiftFontName - OS font complements library. Localized font supported. (Libs / Fonts)
README
# SwiftFontName
SwiftFontName is font name complements and supports localized font library.
You don't need to search font name any more with SwiftFontName. When using UIFont, you sometimes search font name string because UIFont needs string font name value. Font family name and font name don't have organized naming rule, so it's painful to search correct string. With SwiftFontName, font name candidates shows up when you put first word of font family name.
[![Version](https://img.shields.io/cocoapods/v/SwiftFontName.svg?style=flat)](http://cocoapods.org/pods/SwiftFontName)
[![License](https://img.shields.io/cocoapods/l/SwiftFontName.svg?style=flat)](http://cocoapods.org/pods/SwiftFontName)
[![Platform](https://img.shields.io/cocoapods/p/SwiftFontName.svg?style=flat)](http://cocoapods.org/pods/SwiftFontName)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)![Helvetica](misc/helvetica.png)
## Features
- Complements for all font names in OS version.
- Localized font name support.## Usage
### Font Name
To start using SwiftFontName, write the following line wherever you want to user font complements:
```swift
import SwiftFontName
```Then:
```swift
FontName.HelveticaNeueLight // HelveticaNeue-Light
```It is really simple!
### Localized Font Name
And you can select localized font:
```swift
LocalizedFontName(FontName.Copperplate, ["ja": FontName.HiraKakuProNW6, "en": FontName.HelveticaNeueLight])
```It means that when preferredLanguage is Japanese, use `HiraKakuProNW6`. And when preferredLanguage is English, use `HelveticaNeue-Light`. And in other case, use `Copperplate`.
## Requirements
- iOS8.0 or later
- Xcode 10.2
- Swift 5## Installation
SwiftFontName is available through [CocoaPods](http://cocoapods.org). To install
it, simply add the following line to your Podfile:### [CocoaPods](http://cocoapods.org):
```ruby
use_frameworks!
pod 'SwiftFontName', '~> 4.0.0'
```### [Carthage](https://github.com/Carthage/Carthage):
```ogdl
github "morizotter/SwiftFontName" ~> 4.0
```### Manually
To copy `FontName.swift` and `LocalizedFontName.swift` in SwiftFontName directory, you can use this library, too.
## Contribution
1. Fork
2. Create your feature branch (git checkout -b my-new-feature)
3. Commit your changes (git commit -am 'Add some feature')
4. Push to the branch (git push origin my-new-feature)
5. Create new Pull Request## Author
Naoki Morita, [email protected]
## License
SwiftFontName is available under the MIT license. See the LICENSE file for more info.