Giter VIP home page Giter VIP logo

Comments (4)

Vaberer avatar Vaberer commented on July 22, 2024

Hello, for now it is on possible because font awesome icon is actually a text and tabbar item's parameter is an image.
There has to be option how to convert it to the image but for now, it's not possible. I am open to any suggestions and pull requests :)

from font-awesome-swift.

snaill avatar snaill commented on July 22, 2024

this is code, I hope useful.

public extension UIImage {

    public convenience init(icon: FAType, size: CGSize, textColor: UIColor = UIColor.blackColor(), backgroundColor: UIColor = UIColor.clearColor()) {

        let paragraph = NSMutableParagraphStyle()
        paragraph.alignment = NSTextAlignment.Center

        // Taken from FontAwesome.io's Fixed Width Icon CSS
        let fontAspectRatio: CGFloat = 1.28571429
        let fontSize = min(size.width / fontAspectRatio, size.height)

        FontLoader.loadFontIfNeeded()
        let font = UIFont(name: FAStruct.FontName, size: fontSize)
        assert(font != nil, FAStruct.ErrorAnnounce)
        let attributes = [NSFontAttributeName: font!, NSForegroundColorAttributeName: textColor, NSBackgroundColorAttributeName: backgroundColor, NSParagraphStyleAttributeName: paragraph]

        let attributedString = NSAttributedString(string: icon.text!, attributes: attributes)
        UIGraphicsBeginImageContextWithOptions(size, false , 0.0)
        attributedString.drawInRect(CGRectMake(0, (size.height - fontSize) / 2, size.width, fontSize))
        let image = UIGraphicsGetImageFromCurrentImageContext()
        UIGraphicsEndImageContext()
        self.init(CGImage: image.CGImage!, scale: image.scale, orientation: image.imageOrientation)
    }

}

public extension UITabBarItem {

    public func setFAIcon(icon: FAType) {

        image = UIImage(icon: icon, size: CGSize(width: 30, height: 30))
    }
}

from font-awesome-swift.

snaill avatar snaill commented on July 22, 2024

for UISegmentedControl:

public extension UISegmentedControl {

    public func setFAIcon(icon: FAType, forSegmentAtIndex segment: Int) {

        FontLoader.loadFontIfNeeded()
        let font = UIFont(name: FAStruct.FontName, size: 23)
        assert(font != nil, FAStruct.ErrorAnnounce)
        setTitleTextAttributes([NSFontAttributeName: font!], forState: .Normal)
        setTitle(icon.text, forSegmentAtIndex: segment)
    }
}

from font-awesome-swift.

Vaberer avatar Vaberer commented on July 22, 2024

Hello,

Thanks for your contribution. Everything works and you can change tabbarItem i.e.

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

from font-awesome-swift.

Related Issues (20)

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.