EFPrefix / EFCountingLabel

Adds animated counting support to UILabel.
https://swiftpackageindex.com/EFPrefix/EFCountingLabel
MIT License
500 stars 63 forks source link

Value of type 'EFCountingLabel' has no member 'format' #29

Closed ciumexan closed 4 years ago

ciumexan commented 4 years ago

Issue Description

Value of type 'EFCountingLabel' has no member 'format'

Description

upgraded to 5.1.1

Reproduce

Screenshot 2019-11-17 at 15 28 08

Other Comment

Upgraded from EFCountingLabel (5.0.0) to EFCountingLabel (5.1.1)

EyreFree commented 4 years ago

@ciumexan

You need to use setUpdateBlock instead, for example:

myLabel.setUpdateBlock { value, label in
    label.text = String(format: "%.2f%%", value)
}