UIView-Helpers
UIView-Helpers copied to clipboard
Wrong implementation in centerAlignHorizontalForView:offset
- (void)centerAlignHorizontalForView:(UIView *)view offset:(CGFloat)offset { [self setFrame:CGRectRound(CGRectMake((CGRectGetWidth([view frame]) / 2.0f) - (CGRectGetWidth([self frame]) / 2.0f) + offset, CGRectGetMinY([self frame]), CGRectGetWidth([self frame]), CGRectGetHeight([self frame])))]; }
Should also add [view frame].origin.x.