I have a custom UIButton with some unique states that I want it to have like:
enum PositionControlState : Int {
case Available = 0, Pending, Waiting, Approved, Declined
}
I've done a bit of Googling and found some stuff about bitmasks, and UIControlState.Application in objective-c. I feel like I have pieces of the puzzle, but not quite sure how to put it all together in swift 2.2.
I'm not sure if you ever resolved this, but the way I have done something similar is like this.
This will allow you to write code such as
button.setTitleColor(.red, for: .pending)
.The issue with this approach is your additional states will be publicly visible for all functions accepting the
UIControlState
. Similar to howUIControlEvents
has a lot of states but some of them are only used on specific classes.Keep in mind that if you move forward with this approach, the additional states you include should remain in the same contextual definition of 'control state'.