Skip to content

alvinnguyen/Font-Awesome-Swift

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Font Awesome Swift

Font Awesome Swift

Follow me: @vaberer

I like ★. Do not forget to ★ this super convenient library.

#There is also a very popular Google Design Material Icons library which you will love!

##Added UISegmentedControl and UITabbarItem support!

###Updated to Font Awesome 4.4 - Added 66 new icons!

Font Awesome swift library for iOS. No image icons any more. Using Font Awesome Swift library is very easy to use. Look at the demo app which shows all icons and their names or just visit FontAwesome.

Requirements

  • iOS 8.0+
  • Xcode 7

Installation

CocoaPods

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 Font Awesome Swift 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 'Font-Awesome-Swift', '~> 1.4.3'

Then, run the following command:

$ pod install

Do not forget to import to your swift files where you want to use this library:

import Font_Awesome_Swift

Manually

  1. Copy FAIcon.swift and FontAwesome.ttf files into your project
  2. Check to import FontAwesome.ttf in project, "Project" > "Target" > "Copy Bundle Resources"

Usage

Super easy way how to add an icon.

UIImage

    imageView.setFAIconWithName(FAType.FATwitter, textColor: UIColor.blueColor(), backgroundColor: UIColor.grayColor())
    
    imageView.setFAIconWithName(FAType.FATwitter, textColor: UIColor.blueColor())

UILabel

    labelName.FAIcon = FAType.FAGithub
    
    //or if you want to set an icon size, use:
    labelName.setFAIcon(FAType.FAGithub, iconSize: 35)
    labelName.textColor = UIColor.redColor()
    
    
    labelName.setFAText(prefixText: "follow me on ", icon: FAType.FATwitter, postfixText: ". Thanks!", size: 25)
    
    //to have bigger icon, use: 
    labelName.setFAText(prefixText: "follow me on  ", icon: FAType.FATwitter, postfixText: ". Thanks!", size: 25, iconSize: 30)
        

UIButton

    buttonName.setFAIcon(FAType.FAGithub, forState: .Normal)
    
    //or if you want to set an icon size, use:
    buttonName.setFAIcon(FAType.FAGithub, iconSize: 35, forState: .Normal)
    buttonName.setTitleColor(UIColor.redColor(), forState: .Normal)
    
    buttonName.setFAText(prefixText: "follow me on ", icon: FAType.FATwitter, postfixText: ". Thanks!", size: 25, forState: .Normal)
    
    //to have bigger icon, use: 
    buttonName.setFAText(prefixText: "follow me on ", icon: FAType.FATwitter, postfixText: ". Thanks!", size: 25, forState: .Normal, iconSize: 30)

UIBarButtonItem

    //Standard font size
    barName.FAIcon = FAType.FAGithub
  
    //Custom font size
    barName.setFAIcon(FAType.FAGithub, iconSize: 35)
    
    barName.tintColor = UIColor.redColor()
    
    
    barName.setFAText(prefixText: "follow me on ", icon: FAType.FATwitter, postfixText: ". Thanks!", size: 25)

UISegmentedControl

  segmentedControl.setFAIcon(FAType.FATwitter, forSegmentAtIndex: 0)

UITabbarItem

  tabBarController?.tabBar.items?.first?.setFAIcon(FAType.FATwitter)

Author

Patrik Vaberer, patrik.vaberer@gmail.com

Licence

Font Awesome Swift is available under the MIT license. See the LICENSE file for more info.

About

Font Awesome swift library for iOS.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 98.3%
  • Ruby 1.7%