CaliCastle / PopMenu

A fully customizable popup style menu for iOS 😎

Home Page:https://popmenu.cali.so

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

can't set PopMenuActionColor

galblank opened this issue Β· comments

βœ”οΈ Issue Checklist

✍🏻 Issue Description

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

πŸ’» Environment

  • iOS Version: [iOS VERSION]
  • Xcode Version: [XCODE VERSION]
    10.1
  • Device(s): [INSERT DEVICE(S) HERE]
  • Simulator?: β˜‘οΈ

You'll have to do:

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

sorry bout that in the documentation

Thank you!