Created
June 29, 2016 20:48
-
-
Save fongd/1bd39d0bf1de03da60de7eaaef5b47cc 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
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