Skip to content

Instantly share code, notes, and snippets.

@kwylez
Created July 20, 2011 12:00
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