Skip to content

Commit

Permalink
Fixing a deprecated method issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
kreeger committed May 7, 2013
1 parent 06599eb commit 76ab11d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UIView+BDKGeometry.m
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ - (void)positionViewBelowView:(UIView *)view {
}

- (void)positionViewBelowView:(UIView *)view padding:(CGFloat)padding {
[self setYOrigin:CGRectGetMaxY(view.frame) + padding];
self.frameYOrigin = CGRectGetMaxY(view.frame) + padding;
}

- (void)centerInView:(UIView *)view direction:(BDKGeometryCenter)direction {
Expand Down

0 comments on commit 76ab11d

Please sign in to comment.