Skip to content

Instantly share code, notes, and snippets.

@sgr-ksmt
Created March 4, 2016 13:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sgr-ksmt/887b50d0643cf6e53e91 to your computer and use it in GitHub Desktop.
Save sgr-ksmt/887b50d0643cf6e53e91 to your computer and use it in GitHub Desktop.
CGRectZeroと書くべきか、CGRect.zeroと書くべきか、省略して.zeroと書くべきか... #CodePiece
let view = UIView(frame: CGRectZero)
// ↓
let view = UIView(frame: CGRect.zero)
// ↓
let view = UIView(frame: .zero)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment