Skip to content

Instantly share code, notes, and snippets.

@kwylez
Created July 20, 2011 12:00
Show Gist options
  • Save kwylez/1094835 to your computer and use it in GitHub Desktop.
Save kwylez/1094835 to your computer and use it in GitHub Desktop.
CGPoint roundedCenterPoint(CGPoint pt) {
return CGPointMake(round(pt.x), round(pt.y));
}
leftLabel.frame = CGRectIntegral(leftLabelFrame);
leftLabel.center = roundedCenterPoint(leftLabel.center);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment