shoheiyokoyama / Koyomi

Simple customizable calendar component in Swift :calendar:
MIT License
749 stars 103 forks source link

Added missing 'public' access level #22

Closed kylehowells closed 7 years ago

kylehowells commented 7 years ago

Although these properties were marked @IBInspectable they lacked the public keyword, meaning they defaulted to internal.

koyomi.cellSpace = 1 // 'cellSpace' is inaccessible due to 'internal' protection level
koyomi.sectionSpace = 1 // 'sectionSpace' is inaccessible due to 'internal' protection level
koyomi.weekCellHeight = 25 // 'weekCellHeight' is inaccessible due to 'internal' protection level

As a result these properties could be set with interface builder. But only with interface builder.

shoheiyokoyama commented 7 years ago

@freerunnering Thank you for contribution 🤓 👍