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

Wrong implementation

Open Fl0p opened this issue 11 years ago • 0 comments

- (void)rightAlignForView:(UIView *)view;

need to be fixed this method use superview instead of view from parameter

- (void)rightAlignForView:(UIView *)view
{
    [self rightAlignForSuperViewOffset:0];
}

https://github.com/andrewroycarter/UIView-Helpers/blob/master/UIView%2BHelpers.m#L194

Fl0p avatar Dec 05 '13 13:12 Fl0p