evgenyneu / swift-badge

A badge view for iOS/tvOS written in Swift
MIT License
394 stars 107 forks source link

Swift 4.2 #21

Closed wolfAle closed 5 years ago

wolfAle commented 5 years ago

Hi,

I'm using the last version of the library from cocoapods (BadgeSwift (5.0.1)) and it doesn't build on Swift4.2. Is there any plan to update it? It's just one line of code actually: let rectWithoutInsets = UIEdgeInsetsInsetRect(rect, insets) to let rectWithoutInsets = rect.inset(by: insets)

Thanks,

evgenyneu commented 5 years ago

Thanks for reminding! Version 6 now supports Swift 4.2.

wolfAle commented 5 years ago

Great, thanks, it works now!