Contents

ptrkstr/symbols

Swift Package Information<br>

Features

  • πŸ’« Contains all SF Symbols - 1.0, 2.0, 2.1, 3.0, 3.1
  • 🏠 Supports all platforms: πŸ“± iOS, πŸ’» macOS, πŸ“Ί tvOS, ⌚️ watchOS.
  • πŸ’― 100% Test Coverage, every SF Symbol String extension is tested.
  • πŸ‘· Easy to maintain for future SF Symbol releases (see Maintenance section).
  • βœ… Availability checks i.e. @available(iOS 15.0, macOS 12.0, tvOS 15.0, watchOS 8.0, *).
  • 🧡 String extension which means you can use all the existing UIImage/NSImage initialisers.
  • πŸ”€ Camelcased allowing better code completion

Usage

import Symbols
// Swift >= 5.5 
UIImage(systemName: .Symbols.magazineFill) // magazine.fill
NSImage(systemSymbolName: .Symbols.magazineFill, accessibilityDescription: nil) // magazine.fill
// Swift < 5.5
UIImage(systemName: String.Symbols.magazine) // magazine.fill
NSImage(systemSymbolName: String.Symbols.magazine, accessibilityDescription: nil) // magazine.fill
// Leading numbers prefixed with underscore
UIImage(systemName: .Symbols._0CircleFill) // 0.circle.fill
NSImage(systemSymbolName: .Symbols._0CircleFill, accessibilityDescription: nil) // 0.circle.fill

Installation

SPM

Add the following to your project:

https://github.com/ptrkstr/Symbols

Maintenance

All terminal commands must be ran from the directory of this repo.

Update raw.txt

  1. Enter the following into terminal but don't press enter yet

`` pbpaste > ./Generator/Sources/Generator/Resources/raw.txt ``

  1. Open SF Symbols
  1. Select all, right click, select "Copy X Names"
  1. Press enter in terminal

Update name_availability.plist

yes | cp /Applications/SF\ Symbols.app/Contents/Resources/name_availability.plist ./Generator/Sources/Generator/Resources

Generate

cd Generator; swift run; cd ..

Aren't there already packages like this?

Yep! But for one reason or another, they didn't fulfil my needs (as of 2021/11/05).

TODO

  • [ ] Show symbol in code completion

Package Metadata

Repository: ptrkstr/symbols

Default branch: master

README: README.md