Created
January 19, 2016 01:28
-
-
Save danstepanov/f420a02223e92dc998fc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let APIPaidStatus = paystubData.status | |
if APIPaidStatus == "paid" { | |
cell.paidStatusLabel.text = "PAID" | |
} else if APIPaidStatus == "scheduled" { | |
cell.paidStatusLabel.text = "SCHEDULED" | |
} else { | |
cell.paidStatusLabel.text = "" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment