Swift library for Feather.
For more information about Feather icons pack, please refer to their README.
NoveFeatherIcons is available through CocoaPod.
To install it, simply add the following line to your Podfile:
pod "NoveFeatherIcons", "~> 1.0"
You can get an UIImage containing the desired icon using one of the following functions:
import NoveFeatherIcons
let iconFromEnum = Feather.getIcon(.feather) // Using an enum
let iconFromString = Feather.getIcon("feather") // Using the icon’s name
If the icon is not found, those functions will return nil
.
You can find the list of available icons on the official Feather website, or by looking at Feather.IconsName
enum content in the Pod.
All icons contain vector data, so you can resize it as you wish. Their default size is 24×24 pixels.
Usage of pod’s assets in Interface Builder is not allowed, as the Bundle is different.
That is why NoveFeatherIcons contains subclasses that help you integrate icons on your storyboards and XIBs. It also provides extensions to quickly init common types.
You can quickly init an UIImageView containing an icon using:
let image = UIImage(.feather)
In Interface Builder, you can use the FeatherImageView
subclass to add an icon without code. The icon name goes in the iconName
field of the Attributes inspector.
Please note that the icon will not show in IB, but will appear when running.
In Interface builder, you can use the FeatherButton
subclass to add a button containing an icon without code. The icon name goes in the iconName
field of the Attributes inspector.
Please note that the icon will not show in IB, but will appear when running.
You can quickly init an UIBarButtonItem containing an icon using:
init(icon: Feather.IconName, style: UIBarButtonItem.Style, target: Any?, action: Selector?)
Example:
let barButtonItem = UIBarButtonItem(icon: .feather, style: .plain, target: self, action: #selector(featherButtonTapped))
In Interface Builder, you can use the FeatherBarButtonItem
subclass to add an icon without code. The icon name goes in the iconName
field of the Attributes inspector.
Please note that the icon will not show in IB, but will appear when running.
- iOS 9.0+
- macOS 10.15+
Steve Gigou (Website, Twitter)
All Feather icons are made by @colebemis
NoveFeatherIcons is available under the MIT license. See the LICENSE file for more informations.