CaliCastle / PopMenu

A fully customizable popup style menu for iOS 😎
https://popmenu.cali.so
MIT License
1.62k stars 185 forks source link

can't set PopMenuActionColor #24

Closed galblank closed 5 years ago

galblank commented 5 years ago

✔️ Issue Checklist

✍🏻 Issue Description

this code is invalid since actionColor is an object and can't be set manager.popMenuAppearance.popMenuColor.actionColor = .green

💻 Environment

CaliCastle commented 5 years ago

You'll have to do:

manager.popMenuAppearance.popMenuColor.actionColor = .tint(.green)

sorry bout that in the documentation

galblank commented 5 years ago

Thank you!