MatthewYork/MYBlurIntroductionView

Changing Text Atrributes

Opened this issue · 1 comments

This is a great control. I have different background images on each panel. Is there a way to set text attributes for individual panels? Thanks!!

The panels have the properties: PanelTitleLabel and PanelDescriptionLabel that you can access and set whatever you want...

let panel1:MYIntroductionPanel = // init the panel...
panel1.PanelTitleLabel.font = UIFont.init(name: "MySuperCoolFont", size: 21)
panel1.PanelDescriptionLabel.font = UIFont.init(name: "MyUltraMegaAwesomeFont", size: 14)