Clemens Henker
Clemens Henker
See https://github.com/alexisakers/BulletinBoard/issues/207
There is a bug when changing the `alternativeButtonTitle`: after setting the property the `alternativeButton` always receives the `actionButtonTitle`. See [BLTNActionItem.swift#L57](https://github.com/alexisakers/BulletinBoard/blob/develop/Sources/Models/BLTNActionItem.swift#L57): - wrong: `.setTitle(actionButtonTitle, for: .normal)` - fixed: `.setTitle(alternativeButtonTitle, for: .normal)`
After updating my app to Swift 5, I've got some (new) compiler warnings - `KYDrawerController.swift:378:36: 'drawerController(_:stateChanged:)' is deprecated: renamed to 'drawerController(_:didChangeState:)'` (see #124) - `KYDrawerController.swift:208:23: Expression implicitly coerced from 'UIView?'...