Skip to content

Instantly share code, notes, and snippets.

@fongd
Created June 29, 2016 20:48
Show Gist options
  • Save fongd/1bd39d0bf1de03da60de7eaaef5b47cc to your computer and use it in GitHub Desktop.
Save fongd/1bd39d0bf1de03da60de7eaaef5b47cc to your computer and use it in GitHub Desktop.
private var _statusCode: Int!
var statusCode: Int! {
get {
return self._statusCode
}
set(newValue) {
if newValue == nil {
self._statusCode = 0
} else {
self._statusCode = newValue
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment