Skip to content

Instantly share code, notes, and snippets.

@warpling
Created April 2, 2016 23:09
Show Gist options
  • Save warpling/0c4ec41e6cc3b45784dd1f9c5fd41151 to your computer and use it in GitHub Desktop.
Save warpling/0c4ec41e6cc3b45784dd1f9c5fd41151 to your computer and use it in GitHub Desktop.
CGRectGetCenter
#define CGRectGetCenter(rect) ({ __typeof__(rect) __r = (rect); (CGPoint) { CGRectGetMidX(__r), CGRectGetMidY(__r)}; })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment