Ramotion / animated-tab-bar

:octocat: RAMAnimatedTabBarController is a Swift UI module library for adding animation to iOS tabbar items and icons. iOS library made by @Ramotion
https://www.ramotion.com/animated-tab-bar-ios-app-development-ui-library/
MIT License
11.13k stars 1.33k forks source link

Change selected and unselected icon colors? #76

Closed fedesenmartin closed 8 years ago

fedesenmartin commented 8 years ago

How do I Change the selected and deselect color in for example bounce animation? thx

0ber commented 8 years ago

RAMAnimatedTabBarItem have properties : (normal state)

    @IBInspectable var textColor: UIColor
    @IBInspectable var iconColor: UIColor

RAMItemAnimation have properties : (selected state)

    @IBInspectable var textSelectedColor: UIColor
    @IBInspectable var iconSelectedColor: UIColor!

you can change in Attributes inspector in Storyboard

fedesenmartin commented 8 years ago

Thanks!