Skip to content

SFSymbol is only available above the iOS 13, So we have to check the iOS version every time when we using the SFSymbol below iOS 13 deployment target projects. We can get rid of this boilerplate code using the AppSymbol framework.

License

Notifications You must be signed in to change notification settings

MnkGitBox/AppSymbol

Repository files navigation

banner Version License Platform SPM

Use the SFSymbol in your ios 13 below deployment target projects without any version check.

Why App Symbol?

SFSymbol is only available above the iOS 13, So we have to check the iOS version every time when we using the SFSymbol below iOS 13 deployment target projects. We can get rid of this boilerplate code using the AppSymbol framework.


Installation

CocoaPods

CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:

$ gem install cocoapods

To integrate AppSymbol into your Xcode project using CocoaPods, specify it in your Podfile:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '12.0'
use_frameworks!

target '<Your Target Name>' do
    pod 'AppSymbol', '~> 1.0.0'
end

Then, run the following command:

$ pod install

Swift Package Manager

Swift Package Manager is a tool for managing the distribution of Swift code. It’s integrated with the Swift build system to automate the process of downloading, compiling, and linking dependencies.

Xcode 11+ is required to build AppSymbol using Swift Package Manager.

dependencies: [
    .package(url: "https://github.com/MnkGitBox/AppSymbol.git", .upToNextMajor(from: "1.0.0"))
]

Manually

If you prefer not to use either of the aforementioned dependency managers, you can integrate AppSymbol into your project manually.


Usage

  • SFSymbol

    1. Add symbol image files to assert folder with original SFSymbol name for older iOS versions.

    symbol asset screenshot

    1. Extend the AppSymbolNames to add type AppSymbolNameType variable with any name. And add variable value as original SFSymbol name.

    extension AppSymbolNames {
    
        var squareAndArrowUp: AppSymbolNameType { .init(rawValue: "square.and.arrow.up") }
    
    }
    1. Finally, you can use this symbol file using the function provided by the framework.
    let shareButton = UIButton.init(with: .squareAndArrowUp, to: .systemFont(ofSize: 17, weight: .medium), for: .normal, scale: .medium)
    
    let shareImageView = UIImageView.init(.squareAndArrowUp, .systemFont(ofSize: 15, weight: .medium), scale: .medium)
    1. Result

      • iOS 15.2 device

      sfsymbol ios 15.2 screenshot

      • iOS 12.0 device

      sfsymbol ios 12.0 screenshot

  • Custom Symbol

    1. Even though Apple has provided thousands of different symbols in the SF Symbol library, it’s impossible to cover every conceivable image you may need in your app. What Apple has done instead is make it really easy for you to build your own custom symbols, when needed. (You can find how to create custom symbol using the symbol template here.)

    custom symbol asset screenshot

    1. Extend the AppSymbolNames to add type AppSymbolNameType variable with any name. And add variable value as original SFSymbol name.

    extension AppSymbolNames {  
        ...
    
        static var lockOpenLine: AppSymbolNameType { .init(rawValue: "lock.open.line") }
    
    }
    1. Finally, you can use this symbol file using the function provided by the framework.
    let shareButton = UIButton.init(with: .lockOpenLine, to: .systemFont(ofSize: 17, weight: .medium), for: .normal, scale: .medium)
    
    let shareImageView = UIImageView.init(.lockOpenLine, .systemFont(ofSize: 15, weight: .medium), scale: .medium)
    1. Result

      • iOS 15.2 device

      sfsymbol ios 15.2 screenshot

      • iOS 12.0 device

      sfsymbol ios 12.0 screenshot

Resources

You can find the original sample code here.

Credits

License

AppSymbol is released under the MIT license. See LICENSE for details.

About

SFSymbol is only available above the iOS 13, So we have to check the iOS version every time when we using the SFSymbol below iOS 13 deployment target projects. We can get rid of this boilerplate code using the AppSymbol framework.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published