Skip to content

Instantly share code, notes, and snippets.

@ivangodfather
Last active August 29, 2015 14:25
Show Gist options
  • Select an option

  • Save ivangodfather/6ed5671bd47021c36447 to your computer and use it in GitHub Desktop.

Select an option

Save ivangodfather/6ed5671bd47021c36447 to your computer and use it in GitHub Desktop.
var currentSelectedAddress: Address? {
get {
if currentSelectedAddress == nil {
return (addresses.count > 0) ? addresses.first : nil
}
return currentSelectedAddress
}
set { ///???
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment