Skip to content

Commit

Permalink
Merge branch 'release/1.0.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
dokgi88 committed Jul 19, 2019
2 parents 2ff1400 + 76c13ab commit 8c9ee5e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion FlashingLabel.podspec
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'FlashingLabel'
s.version = '1.0.4'
s.version = '1.0.5'
s.summary = 'very easy and simple flashing label'

# This description is used to generate tags and improve search results.
Expand Down
2 changes: 1 addition & 1 deletion FlashingLabel/Classes/FlashingLabel.swift
Expand Up @@ -46,7 +46,7 @@ public class FlashingLabel: UILabel {
guard let baseColor = baseColor else {return}
textColor = baseColor

guard !flashingTimer.isValid, let flashingTime = flashingTime, let flashingColors = flashingColors else {return}
guard !flashingTimer.isValid, let flashingTime = flashingTime, let flashingColors = flashingColors, textCount > 0 else {return}

var tempColors = [UIColor]()

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -15,7 +15,7 @@ _<p align="center">![flashinglabel_trans](https://github.com/dokgi88/dokgi88.git
pod 'FlashingLabel'
```

## Example
## How to use

* required
```swift
Expand Down

0 comments on commit 8c9ee5e

Please sign in to comment.