Follow me: @vaberer
I like ★. Do not forget to ★ this super convenient library.
#There is also a very popular Font Awesome library which you will love!
Google Material Design Icons Swift library for iOS. No image icons any more. Using Google Material Design Icons Swift library is very easy to use. Look at the demo app which shows all icons and their names or just visit Google Design Material Icons.
- iOS 8.0+
- Xcode 7
CocoaPods is a dependency manager for Cocoa projects.
CocoaPods 0.36 adds supports for Swift and embedded frameworks. You can install it with the following command:
$ gem install cocoapods
To integrate Google Material Design Icons Swifr into your Xcode project using CocoaPods, specify it in your Podfile
:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
pod 'Google-Material-Design-Icons-Swift', '~> 1.0.1'
Then, run the following command:
$ pod install
Do not forget to import to your swift files where you want to use this library:
import Google_Material_Design_Icons_Swift
pod 'Google-Material-Design-Icons-Swift', :git => 'https://github.com/Vaberer/Google-Material-Design-Icons-Swift.git', :branch => 'swift1.2'
- Copy
GMDIcon.swift
andGMDIcons.ttf
files into your project - Check to import
GMDIcons.ttf
in project, "Project" > "Target" > "Copy Bundle Resources"
Super easy way how to add an icon.
labelName.GMDIcon = GMDType.GMDPublic
//or if you want to set an icon size, use:
labelName.setGMDIcon(GMDType.GMDPublic, iconSize: 30)
labelName.textColor = UIColor.redColor()
buttonName.setGMDIcon(GMDType.GMDPublic, forState: .Normal)
//or if you want to set an icon size, use:
buttonName.setGMDIcon(GMDType.GMDPublic, iconSize: 35, forState: .Normal)
buttonName.setTitleColor(UIColor.redColor(), forState: .Normal)
//Standard font size
barName.GMDIcon = GMDType.GMDPublic
//Custom font size
barName.setGMDIcon(GMDType.GMDPublic, iconSize: 35)
barName.tintColor = UIColor.redColor()
Patrik Vaberer, [email protected]
Google Material Design Icons Swift is available under the MIT license. See the LICENSE file for more info.