Skip to content

Instantly share code, notes, and snippets.

@leilee
Forked from steipete/gist:6133152
Created July 12, 2017 08:27
Show Gist options
  • Save leilee/798839857cc79536805e423471d694a3 to your computer and use it in GitHub Desktop.
Save leilee/798839857cc79536805e423471d694a3 to your computer and use it in GitHub Desktop.
Create a hash from a CGRect
NSUInteger PSPDFHashFromCGRect(CGRect rect) {
return (*(NSUInteger *)&rect.origin.x << 10 ^ *(NSUInteger *)&rect.origin.y) + (*(NSUInteger *)&rect.size.width << 10 ^ *(NSUInteger *)&rect.size.height);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment