Skip to content

Instantly share code, notes, and snippets.

@danstepanov
Created January 19, 2016 01:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save danstepanov/f420a02223e92dc998fc to your computer and use it in GitHub Desktop.
Save danstepanov/f420a02223e92dc998fc to your computer and use it in GitHub Desktop.
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