如何改变物体的中心?

问题描述 投票:0回答:1

这是我用来将按钮置于屏幕底部的代码:

CGFloat centro = self.view.center.x;
CGFloat bottom = CGRectGetMaxY(self.view.frame);

_sendButton.center = CGPointMake(centro, bottom);

但是,按钮的实际中心设置在屏幕的底部,覆盖按钮的一半。如何设置它以使按钮上的最低点设置为:

CGPointMake(centro,bottom)

代替?

ios objective-c cgpoint
1个回答
2
投票

您需要减去按钮高度的一半:

CGFloat centro = self.view.center.x;
CGFloat bottom = CGRectGetMaxY(self.view.frame) - _sendButton.frame.size.height / 2.0;

_sendButton.center = CGPointMake(centro, bottom);
© www.soinside.com 2019 - 2024. All rights reserved.