urouro-net / SFSafeSymbols

A safe way to access Apple's SF System Symbols using static typing

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status Swift: 5.1 Version: 0.1.1 Platforms: iOS License: MIT Swift Package Manager: Compatible Accio: supported Carthage: compatible

MotivationInstallationUsageContributingLicenseIssuesPull Requests

Motivation

At WWDC 2019, Apple announced a new library of icons that come included with iOS 13. To browse them, there's even a dedicated Mac app called SF Symbols. However, developers still have to copy the name of an icon and reference it unsafely, resulting in code like this:

let image = UIImage(systemName: "circle.fill")

It didn't took long until first ideas came up to make these icons accessible in a safe way using a framework. And this is just what this framework does!

Installation

SFSafeSymbols can be installed via Swift Package Manager, Accio or Carthage:

Swift Package Manager

To integrate using Apple's Swift package manager, add the following as a dependency to your Package.swift:

.package(url: "https://github.com/piknotech/SFSafeSymbols.git", .upToNextMajor(from: "0.1"))

After specifying "SFSafeSymbols" as a dependency of the target in which you want to use it, run swift package update.

Accio

Do the same configurations as for Swift PM, then run accio update instead of swift package update.

Carthage

Make the following entry in your Cartfile:

github "piknotech/SFSafeSymbols" ~> 0.1

Then run carthage update.

Usage

All the system icons are accessible via the SFSymbol enum. They are named similar to Apple's naming, but use a lower camel case style and prefix names with leading numbers with a _ character:

c.circle        ==> SFSymbol.cCircle
e.circle.fill   ==> SFSymbol.eCircleFill
11.circle.fill  ==> SFSymbol._11CircleFill

You can now either create the corresponding UIImage by initializing it using the SFSymbol...

let image = UIImage(systemSymbol: .cCircle)
let image2 = UIImage(systemSymbol: .eCircleFill, withConfiguration: /* Some UIImage.Configuration */)
let image3 = UIImage(systemSymbol: ._11CircleFill, compatibleWith: /* Some UITraitCollection */)

... or by calling a function on your SFSymbol instance:

let image = SFSymbol.cCircle.toImage
let image2 = SFSymbol.eCircleFill.toImage(withConfiguration: /* Some UIImage.Configuration */)
let image3 = SFSymbol._11CircleFill.toImage(compatibleWith: /* Some UITraitCollection */)

All symbols are tested so you can be sure your code won't crash because an image couldn't be found!

Contributing

Contributions are very much welcomed! See CONTRIBUTING.md for more information.

License

This library is released under the MIT License. See LICENSE.md for details.

About

A safe way to access Apple's SF System Symbols using static typing

License:MIT License


Languages

Language:Swift 99.1%Language:Makefile 0.9%