Giter Site home page Giter Site logo

font-awesome-swift's Introduction

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 & UITabbarItem & UISlider 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.7'

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
    
    labelName.setFAIcon(FAType.FAGithub, iconSize: 35)
    
    labelName.setFAText(prefixText: "follow me on ", icon: FAType.FATwitter, postfixText: ". Thanks!", size: 25)
    
    // bigger icon: 
    labelName.setFAText(prefixText: "follow me on  ", icon: FAType.FATwitter, postfixText: ". Thanks!", size: 25, iconSize: 30)
    
    labelName.setFAColor(UIColor.redColor())
        

UIButton

    buttonName.setFAIcon(FAType.FAGithub, forState: .Normal)
    
    // set an icon size
    buttonName.setFAIcon(FAType.FAGithub, iconSize: 35, forState: .Normal)
  
    buttonName.setFAText(prefixText: "follow me on ", icon: FAType.FATwitter, postfixText: ". Thanks!", size: 25, forState: .Normal)
    
    // bigger icon 
    buttonName.setFAText(prefixText: "follow me on ", icon: FAType.FATwitter, postfixText: ". Thanks!", size: 25, forState: .Normal, iconSize: 30)
    
    
    // change a color:
    buttonName.setFATitleColor(UIColor.redColor(), forState: .Normal))

UIBarButtonItem

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

UISegmentedControl

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

UITabbarItem

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

UISlider

  // change minimum or maximum value image
  slider.setFAMinimumValueImage(.FABellSlashO)
  slider.setFAMaximumValueImage(.FABellO)

  // change minimum or maximum value image with a specific size
  slider.setFAMinimumValueImage(.FABellSlashO, customSize:  CGSizeMake(35, 35))
  slider.setFAMaximumValueImage(.FABellO, customSize:  CGSizeMake(35, 35))

UIViewController

  // change navigation title
  FATitle = FAType.FATwitter

Author

Patrik Vaberer, [email protected]

Licence

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

font-awesome-swift's People

Contributors

vaberer avatar tchukuchuk avatar marekmatula avatar michaelsabo avatar

Watchers

James Cloos avatar Kristoff IBell avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.