UIView-Helpers icon indicating copy to clipboard operation
UIView-Helpers copied to clipboard

Wrong implementation in centerAlignVerticalForView:offset

Open wentingliu opened this issue 11 years ago • 0 comments

  • (void)centerAlignVerticalForView:(UIView *)view offset:(CGFloat)offset { [self setFrame:CGRectRound(CGRectMake(CGRectGetMinX([self frame]), (CGRectGetHeight([view frame]) / 2.0f) - (CGRectGetHeight([self frame]) / 2.0f) + offset, CGRectGetWidth([self frame]), CGRectGetHeight([self frame])))]; }

Should also add [view frame].origin.y.

wentingliu avatar Jan 05 '14 13:01 wentingliu